#include <..\common.h> string Smoothie::Logger::log = ""; void Smoothie::Logger::Put( const string &text ) { //#ifdef _DEBUG log += text + "\r\n"; { ofstream ofs( ( (string)BasicSystemDir + "Log\\compile.log" ).c_str(), ios_base::app ); ofs << text << endl; ofs.close(); } //#endif } BasicSource Smoothie::Lexical::source; NamespaceScopes Smoothie::Lexical::liveingNamespaceScopes; TypeDefCollection Smoothie::Meta::typeDefs; vector Smoothie::Meta::procPointers; NamespaceScopesCollection Smoothie::Meta::namespaceScopesCollection; NamespaceScopesCollection Smoothie::Meta::importedNamespaces;