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

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

Importsステートメントを導入した。実装は作り途中。

File size: 647 bytes
Line 
1#include <..\common.h>
2
3string Smoothie::Logger::log = "";
4
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
18BasicSource Smoothie::Lexical::source;
19NamespaceScopes Smoothie::Lexical::liveingNamespaceScopes;
20
21TypeDefCollection Smoothie::Meta::typeDefs;
22vector<ProcPointer *> Smoothie::Meta::procPointers;
23NamespaceScopesCollection Smoothie::Meta::namespaceScopesCollection;
24NamespaceScopesCollection Smoothie::Meta::importedNamespaces;
Note: See TracBrowser for help on using the repository browser.