source: dev/BasicCompiler_Common/src/Smoothie.cpp@ 112

Last change on this file since 112 was 112, checked in by dai_9181, 17 years ago

#_fullcompileディレクティブを導入。
rev.234を刻印した。

File size: 688 bytes
RevLine 
[78]1#include <..\common.h>
2
[91]3string Smoothie::Logger::log = "";
4
[107]5void 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
[88]18BasicSource Smoothie::Lexical::source;
[101]19NamespaceScopes Smoothie::Lexical::liveingNamespaceScopes;
[88]20
21TypeDefCollection Smoothie::Meta::typeDefs;
22vector<ProcPointer *> Smoothie::Meta::procPointers;
[105]23NamespaceScopesCollection Smoothie::Meta::namespaceScopesCollection;
[107]24NamespaceScopesCollection Smoothie::Meta::importedNamespaces;
[112]25
26bool Smoothie::isFullCompile = false;
Note: See TracBrowser for help on using the repository browser.