Changeset 2234 for code/branches/buildsystem
- Timestamp:
- Nov 19, 2008, 9:18:42 PM (16 years ago)
- Location:
- code/branches/buildsystem/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem/src/core/CommandExecutor.h
r1771 r2234 36 36 #include "CommandEvaluation.h" 37 37 38 namespace orxonox // tolua_export 39 { // tolua_export 38 // tolua_begin 39 namespace orxonox 40 { 40 41 class _CoreExport CommandExecutor 41 /*42 class CommandExecutor { // tolua_export43 */44 42 { 43 // tolua_end 45 44 public: 46 45 static bool execute(const std::string& command, bool useTcl = true); // tolua_export -
code/branches/buildsystem/src/core/Script.h
r1975 r2234 45 45 #include <string> 46 46 47 namespace orxonox // tolua_export 48 { // tolua_export 47 // tolua_begin 48 namespace orxonox 49 { 49 50 class _CoreExport Script 50 /*51 class Script { // tolua_export52 */53 51 { 52 // tolua_end 54 53 struct LoadS { 55 54 const char *s; -
code/branches/buildsystem/src/orxonox/gui/GUIManager.h
r1755 r2234 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 MouseHandler 51 /* 52 class GUIManager { // tolua_export 53 */ 54 { 51 class _OrxonoxExport GUIManager 52 // tolua_end 53 : public KeyHandler, public MouseHandler 54 { // tolua_export 55 55 public: 56 56 enum State -
code/branches/buildsystem/src/tolua/lua/package.lua
r2233 r2234 239 239 local code = '\n$#include "'..fn..'"\n' 240 240 s= "\n" .. s .. "\n" -- add blank lines as sentinels 241 242 -- eliminate export macro problems in class declarations 243 s = gsub(s, ' _%w*Export ', ' ') 244 241 245 local _,e,c,t = strfind(s, "\n([^\n]-)[Tt][Oo][Ll][Uu][Aa]_([^%s]*)[^\n]*\n") 242 246 while e do
Note: See TracChangeset
for help on using the changeset viewer.