Rev | Line | |
---|
[166] | 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 |
|
---|
| 12 | namespace Jenga{
|
---|
| 13 | namespace Common{
|
---|
| 14 |
|
---|
| 15 | using namespace std;
|
---|
| 16 |
|
---|
| 17 | class Directory
|
---|
| 18 | {
|
---|
| 19 | string path;
|
---|
| 20 | public:
|
---|
[295] | 21 | Directory( const string &path, bool isMake = false );
|
---|
[166] | 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.