From: <sv...@ww...> - 2005-12-03 03:03:28
|
Author: mkrose Date: 2005-12-02 19:03:19 -0800 (Fri, 02 Dec 2005) New Revision: 1702 Modified: trunk/CSP/csp/cspsim/swig/Config.i Log: Wrap additional functions from Config.h in the swig interface. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1702 Modified: trunk/CSP/csp/cspsim/swig/Config.i =================================================================== --- trunk/CSP/csp/cspsim/swig/Config.i 2005-12-03 03:02:31 UTC (rev 1701) +++ trunk/CSP/csp/cspsim/swig/Config.i 2005-12-03 03:03:19 UTC (rev 1702) @@ -22,6 +22,13 @@ #include <csp/cspsim/Config.h> %} +%include "std_string.i" + namespace csp { extern bool openConfig(std::string path, bool report_error); +extern std::string getCachePath(); +extern std::string getConfigPath(); +extern std::string getConfigPath(std::string const &); +extern std::string getDataPath(); +extern std::string getDataPath(std::string const &); } |