diff options
author | Paul Gilbert | 2019-04-14 10:07:03 -0700 |
---|---|---|
committer | Paul Gilbert | 2019-04-14 10:07:03 -0700 |
commit | 82f4ee86a9824a9cdfd5060d7bab23be381a46df (patch) | |
tree | 263441d162a886dabd22e1919e9b8ded99d28f4e /engines/glk/glulxe | |
parent | aa2460e02ab6045f659d85d8182e3ecde3f7f420 (diff) | |
download | scummvm-rg350-82f4ee86a9824a9cdfd5060d7bab23be381a46df.tar.gz scummvm-rg350-82f4ee86a9824a9cdfd5060d7bab23be381a46df.tar.bz2 scummvm-rg350-82f4ee86a9824a9cdfd5060d7bab23be381a46df.zip |
GLK: GLULXE: Stubs for float and operation files
Diffstat (limited to 'engines/glk/glulxe')
-rw-r--r-- | engines/glk/glulxe/float.cpp | 30 | ||||
-rw-r--r-- | engines/glk/glulxe/float.h | 36 | ||||
-rw-r--r-- | engines/glk/glulxe/glkop.cpp | 30 | ||||
-rw-r--r-- | engines/glk/glulxe/glkop.h | 36 |
4 files changed, 132 insertions, 0 deletions
diff --git a/engines/glk/glulxe/float.cpp b/engines/glk/glulxe/float.cpp new file mode 100644 index 0000000000..c1ffc77be9 --- /dev/null +++ b/engines/glk/glulxe/float.cpp @@ -0,0 +1,30 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#include "glk/glulxe/float.h" + +namespace Glk { +namespace Glulxe { + + +} // End of namespace Glulxe +} // End of namespace Glk diff --git a/engines/glk/glulxe/float.h b/engines/glk/glulxe/float.h new file mode 100644 index 0000000000..ed9d716764 --- /dev/null +++ b/engines/glk/glulxe/float.h @@ -0,0 +1,36 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef GLK_GLULXE_FLOAT +#define GLK_GLULXE_FLOAT + +#include "common/scummsys.h" +#include "glk/glk_api.h" + +namespace Glk { +namespace Glulxe { + + +} // End of namespace Glulxe +} // End of namespace Glk + +#endif diff --git a/engines/glk/glulxe/glkop.cpp b/engines/glk/glulxe/glkop.cpp new file mode 100644 index 0000000000..af650a3add --- /dev/null +++ b/engines/glk/glulxe/glkop.cpp @@ -0,0 +1,30 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#include "glk/glulxe/glkop.h" + +namespace Glk { +namespace Glulxe { + + +} // End of namespace Glulxe +} // End of namespace Glk diff --git a/engines/glk/glulxe/glkop.h b/engines/glk/glulxe/glkop.h new file mode 100644 index 0000000000..ed9d716764 --- /dev/null +++ b/engines/glk/glulxe/glkop.h @@ -0,0 +1,36 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef GLK_GLULXE_FLOAT +#define GLK_GLULXE_FLOAT + +#include "common/scummsys.h" +#include "glk/glk_api.h" + +namespace Glk { +namespace Glulxe { + + +} // End of namespace Glulxe +} // End of namespace Glk + +#endif |