Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 4, 2008, 4:44:24 PM (16 years ago)
Author:
landauf
Message:

added a tcl-thread, but there are still some bugs and problems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/core/TclBind.h

    r1216 r1230  
    3636namespace orxonox
    3737{
    38     class TclBind
     38    class _CoreExport TclBind
    3939    {
    4040        public:
    4141            static TclBind& getInstance();
    4242
     43            static std::string tcl(const std::string& tclcode);
     44
    4345            void setDataPath(const std::string& datapath);
     46            std::string getTclLibPath() const { return this->tclLibPath_; }
    4447            void createTclInterpreter();
    4548            void createNewTclInterpreter();
    4649
    47             static void puts(Tcl::object const &args);
    48             static void execute(Tcl::object const &args);
    49             static std::string orxonox(Tcl::object const &args);
    50             static std::string tcl(const std::string& tclcode);
     50            static void tcl_puts(Tcl::object const &args);
     51
     52            static void tcl_execute(Tcl::object const &args);
     53            static std::string tcl_orxonox(Tcl::object const &args);
     54
    5155            static bool eval(const std::string& tclcode);
    5256
Note: See TracChangeset for help on using the changeset viewer.