Changeset 2509 for code/branches/buildsystem2/src/orxonox/gui
- Timestamp:
- Dec 17, 2008, 8:59:48 PM (16 years ago)
- Location:
- code/branches/buildsystem2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2
- Property svn:ignore deleted
- Property svn:mergeinfo changed
/code/branches/buildsystem (added) merged: 1875,1882-1886,1975-1982,1991,1999,2054,2061,2135,2137-2139,2197-2199,2204,2214-2220,2223-2224,2229,2233-2244,2248-2249,2252-2253,2260,2275
-
code/branches/buildsystem2/src/orxonox/gui/GUIManager.cc
r2087 r2509 39 39 #include <OgreRoot.h> 40 40 #include <CEGUI.h> 41 #include "ceguilua/CEGUILua.h"41 #include <CEGUILua.h> 42 42 #include "util/Exception.h" 43 43 #include "core/input/InputManager.h" 44 44 #include "core/input/SimpleInputState.h" 45 #include "core/tolua/tolua_bind.h"46 45 #include "core/ConsoleCommand.h" 47 46 #include "core/Core.h" 48 #include "tolua/tolua_bind.h" 47 #include "core/ToluaBindCore.h" 48 #include "orxonox/ToluaBindOrxonox.h" 49 49 #include "OgreCEGUIRenderer.h" 50 50 51 #include "lua/lua.hpp" 51 extern "C" { 52 #include "lua.h" 53 } 52 54 53 55 namespace orxonox -
code/branches/buildsystem2/src/orxonox/gui/GUIManager.h
r1887 r2509 42 42 #include "core/input/InputInterfaces.h" 43 43 44 namespace orxonox // tolua_export 45 { // tolua_export 44 // tolua_begin 45 namespace orxonox 46 { 46 47 /** 47 48 @brief 48 49 Provides a simple interface to CEGUI with tolua methods and console commands 49 50 */ 50 class _OrxonoxExport GUIManager : public KeyHandler, public MouseHandler51 /* 52 class GUIManager { // tolua_export53 */ 51 class _OrxonoxExport GUIManager 52 // tolua_end 53 : public KeyHandler, public MouseHandler 54 // tolua_begin 54 55 { 56 // tolua_end 55 57 public: 56 58 enum State
Note: See TracChangeset
for help on using the changeset viewer.