Ignore:
Timestamp:
Aug 22, 2007, 11:23:41 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/jenga/src/common/Directory.cpp

    r166 r295  
    11#include <boost/foreach.hpp>
    22#include <jenga/include/common/Directory.h>
     3#include <jenga/include/common/Exception.h>
     4
     5#include <imagehlp.h>
    36
    47using namespace std;
    58using namespace Jenga::Common;
     9
     10Directory::Directory( const string &path, bool isMake )
     11    : path( path )
     12{
     13    if ( isMake )
     14    {
     15        if (!::MakeSureDirectoryPathExists(path.c_str()))
     16        {
     17            Jenga::Throw( "MakeSureDirectoryPathExists failed!" );
     18        }
     19    }
     20}
    621
    722string Directory::GetFullPath( const string &relationPath )
Note: See TracChangeset for help on using the changeset viewer.