| Line | |
|---|
| 1 | // -------------------------------------------------------------------------- |
|---|
| 2 | // |
|---|
| 3 | // File |
|---|
| 4 | // Name: PathUtils.h |
|---|
| 5 | // Purpose: Platform-independent path manipulation |
|---|
| 6 | // Created: 2007/01/17 |
|---|
| 7 | // |
|---|
| 8 | // -------------------------------------------------------------------------- |
|---|
| 9 | |
|---|
| 10 | #ifndef PATHUTILS_H |
|---|
| 11 | #define PATHUTILS_H |
|---|
| 12 | |
|---|
| 13 | #include <string> |
|---|
| 14 | |
|---|
| 15 | // -------------------------------------------------------------------------- |
|---|
| 16 | // |
|---|
| 17 | // Function |
|---|
| 18 | // Name: MakeFullPath(const std::string& rDir, const std::string& rFile) |
|---|
| 19 | // Purpose: Combine directory and file name |
|---|
| 20 | // Created: 2006/08/10 |
|---|
| 21 | // |
|---|
| 22 | // -------------------------------------------------------------------------- |
|---|
| 23 | |
|---|
| 24 | std::string MakeFullPath(const std::string& rDir, const std::string& rEntry); |
|---|
| 25 | |
|---|
| 26 | #endif // !PATHUTILS_H |
|---|
Note: See
TracBrowser
for help on using the repository browser.