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/jenga/src/common/Directory.cpp

    r518 r523  
    11#include "stdafx.h"
    22
    3 using namespace std;
    43using namespace Jenga::Common;
    54
    6 Directory::Directory( const string &path, bool isMake )
     5Directory::Directory( const std::string &path, bool isMake )
    76    : path( path )
    87{
     
    1615}
    1716
    18 string Directory::GetFullPath( const string &relationPath )
     17std::string Directory::GetFullPath( const std::string &relationPath )
    1918{
    20     string resultPath = relationPath;
     19    std::string resultPath = relationPath;
    2120
    2221    // '/'→'\'
     
    2928    }
    3029
    31     if( resultPath.find( ":" ) != string::npos || resultPath.find( "\\\\" ) != string::npos )
     30    if( resultPath.find( ":" ) != std::string::npos || resultPath.find( "\\\\" ) != std::string::npos )
    3231    {
    3332        // フルパスが引き渡されていたとき
Note: See TracChangeset for help on using the changeset viewer.