source: dev/trunk/jenga/include/common/Directory.h@ 295

Last change on this file since 295 was 295, checked in by dai_9181, 17 years ago
File size: 430 bytes
Line 
1#pragma once
2#pragma warning(disable : 4996)
3
4#include <vector>
5#include <string>
6
7#include <stdlib.h>
8
9#include <windows.h>
10
11
12namespace Jenga{
13namespace Common{
14
15using namespace std;
16
17class Directory
18{
19 string path;
20public:
21 Directory( const string &path, bool isMake = false );
22
23 string GetFullPath( const string &relationPath );
24
25 string GetRelationalPath( const string &fullPath )
26 {
27 }
28};
29
30
31}}
Note: See TracBrowser for help on using the repository browser.