Changeset 107 in dev for BasicCompiler_Common/src/Smoothie.cpp
- Timestamp:
- May 6, 2007, 3:17:56 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/src/Smoothie.cpp
r105 r107 2 2 3 3 string Smoothie::Logger::log = ""; 4 5 void Smoothie::Logger::Put( const string &text ) 6 { 7 //#ifdef _DEBUG 8 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 //#endif 16 } 4 17 5 18 BasicSource Smoothie::Lexical::source; … … 9 22 vector<ProcPointer *> Smoothie::Meta::procPointers; 10 23 NamespaceScopesCollection Smoothie::Meta::namespaceScopesCollection; 24 NamespaceScopesCollection Smoothie::Meta::importedNamespaces;
Note:
See TracChangeset
for help on using the changeset viewer.