Line | |
---|
1 | #include <..\common.h>
|
---|
2 |
|
---|
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 | }
|
---|
17 |
|
---|
18 | BasicSource Smoothie::Lexical::source;
|
---|
19 | NamespaceScopes Smoothie::Lexical::liveingNamespaceScopes;
|
---|
20 |
|
---|
21 | TypeDefCollection Smoothie::Meta::typeDefs;
|
---|
22 | vector<ProcPointer *> Smoothie::Meta::procPointers;
|
---|
23 | NamespaceScopesCollection Smoothie::Meta::namespaceScopesCollection;
|
---|
24 | NamespaceScopesCollection Smoothie::Temp::importedNamespaces;
|
---|
25 | BlittableTypes Smoothie::Meta::blittableTypes;
|
---|
26 |
|
---|
27 | bool Smoothie::isFullCompile = false;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.