Changeset 167 in dev for trunk/abdev/BasicCompiler_Common/src/Smoothie.cpp
- Timestamp:
- Jun 17, 2007, 9:56:19 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Smoothie.cpp
r159 r167 1 1 #include <..\common.h> 2 3 string Smoothie::Logger::log = "";4 5 void Smoothie::Logger::Put( const string &text )6 {7 //#ifdef _DEBUG8 log += text + "\r\n";9 10 {11 ofstream ofs( ( (string)BasicSystemDir + "Log\\compile.log" ).c_str(), ios_base::app );12 ofs << text << endl;13 ofs.close();14 }15 //#endif16 }17 2 18 3 BasicSource Smoothie::Lexical::source;
Note:
See TracChangeset
for help on using the changeset viewer.