| 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:
|
|---|
| 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.