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

Last change on this file since 166 was 166, checked in by dai_9181, 17 years ago

Directoryクラスを追加

File size: 434 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 )
22 : path( path )
23 {
24 }
25
26 string GetFullPath( const string &relationPath );
27
28 string GetRelationalPath( const string &fullPath )
29 {
30 }
31};
32
33
34}}
Note: See TracBrowser for help on using the repository browser.