Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 29, 2009, 7:04:03 PM (15 years ago)
Author:
rgrieder
Message:
  • Added changelog for CppTcl
  • Added unified diff file with our changes
  • Minimised our changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/src/cpptcl/CppTcl.h

    r1505 r2600  
    7070public:
    7171     result(Tcl_Interp *interp);
    72 
     72     
    7373     operator bool() const;
    7474     operator double() const;
     
    171171               throw tcl_error("Too few arguments.");
    172172          }
    173 
     173         
    174174          std::string methodName(Tcl_GetString(objv[1]));
    175175
     
    471471     interpreter(Tcl_Interp *, bool owner = true);
    472472     ~interpreter();
    473 
     473     
    474474     void make_safe();
    475 
     475     
    476476     Tcl_Interp * get() const { return interp_; }
    477477
    478      // free function definitions
    479 
     478     // free function definitions     
     479     
    480480     template <typename R>
    481481     void def(std::string const &name, R (*f)(),
     
    634634     }
    635635
    636      // free script evaluation
     636     // free script evaluation     
    637637     details::result eval(std::string const &script);
    638638     details::result eval(std::istream &s);
     
    838838          throw tcl_error(interp_);
    839839     }
    840 
     840 
    841841     return details::result(interp_);
    842842}
Note: See TracChangeset for help on using the changeset viewer.