Ignore:
Timestamp:
Jun 17, 2007, 9:56:19 PM (17 years ago)
Author:
dai_9181
Message:

BasicSysDirをGetAppDirに置き換えた

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/include/Smoothie.h

    r159 r167  
    77public:
    88
    9     class Logger{
    10         static string log;
    11     public:
    12         static void Initialize(){
    13 #ifdef _DEBUG
    14             log = "";
    15 
    16             ofstream ofs( ( (string)BasicSystemDir + "Log\\compile.log" ).c_str(), ios_base::trunc );
    17             ofs.close();
    18 #endif
    19         }
    20         static void Put( const string &text );
    21         static void PutFile( const string &fileName, const string &buffer ){
    22             ofstream ofs( ( (string)BasicSystemDir + "Log\\" + fileName ).c_str() );
    23             ofs << buffer << endl;
    24             ofs.close();
    25         }
    26     };
    27 
    289    class Lexical{
    2910    public:
     11        static string baseProjectDirPath;
    3012        static BasicSource source;
    3113        static NamespaceScopes liveingNamespaceScopes;
Note: See TracChangeset for help on using the changeset viewer.