source: box/trunk/lib/common/PathUtils.h @ 1265

Revision 1265, 755 bytes checked in by chris, 5 years ago (diff)

Moved MakeFullPath? into its own library file so that we can share it
(BackupQueries? needs it too) (refs #3)

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