Ignore:
Timestamp:
May 1, 2008, 11:03:14 PM (16 years ago)
Author:
dai_9181
Message:

ヘッダファイルを整理中

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/include/logger.h

    r522 r523  
    8484inline void basic_dbg_streambuf<char>::dbg_out(const char *str)
    8585{
    86     ofstream ofs( ( saveFilePath ).c_str(), ios_base::app );
     86    std::ofstream ofs( ( saveFilePath ).c_str(), std::ios_base::app );
    8787    ofs << "[" << (count++) << "] " << str ;
    8888    ofs.close();
     
    100100{
    101101public:
    102     basic_dbg_ostream( const string &saveFilePath, bool isOptionEnabled )
     102    basic_dbg_ostream( const std::string &saveFilePath, bool isOptionEnabled )
    103103        : std::basic_ostream<Ch_T, Tr_T>(new basic_dbg_streambuf<Ch_T, Tr_T>(saveFilePath,isOptionEnabled))
    104104    {
    105         ofstream ofs( ( saveFilePath ).c_str(), ios_base::trunc );
     105        std::ofstream ofs( ( saveFilePath ).c_str(), std::ios_base::trunc );
    106106        ofs.close();
    107107    }
Note: See TracChangeset for help on using the changeset viewer.