Last change
on this file since 163 was 159, checked in by dai_9181, 18 years ago |
プロジェクト内を整理。jengaライブラリのベースを作成。
|
File size:
542 bytes
|
Rev | Line | |
---|
[78] | 1 | #include <..\common.h>
|
---|
| 2 |
|
---|
[91] | 3 | string Smoothie::Logger::log = "";
|
---|
| 4 |
|
---|
[107] | 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 |
|
---|
[88] | 18 | BasicSource Smoothie::Lexical::source;
|
---|
[101] | 19 | NamespaceScopes Smoothie::Lexical::liveingNamespaceScopes;
|
---|
[88] | 20 |
|
---|
[159] | 21 | Meta Smoothie::meta;
|
---|
[143] | 22 | NamespaceScopesCollection Smoothie::Temp::importedNamespaces;
|
---|
[112] | 23 |
|
---|
| 24 | bool Smoothie::isFullCompile = false;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.