summaryrefslogtreecommitdiff
path: root/utils/DirPath.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/DirPath.h')
-rw-r--r--utils/DirPath.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/utils/DirPath.h b/utils/DirPath.h
index 3fe377e..538a4ff 100644
--- a/utils/DirPath.h
+++ b/utils/DirPath.h
@@ -13,24 +13,23 @@
* $CurLog$
*/
-
#ifndef DirPath_H_
#define DirPath_H_
#include "cplus_bugs.h"
#include "List.h"
-class CcuDirPath : public CcuList {
+class IvlDirPath : public IvlList {
public:
enum alloc_mode { DontAllocNames, DoAllocNames };
private:
alloc_mode Alloc;
public:
- CcuDirPath ();
- CcuDirPath (alloc_mode);
- CcuDirPath (const char*);
- CcuDirPath (const char*, const char*, ...);
- ~CcuDirPath ();
+ IvlDirPath ();
+ IvlDirPath (alloc_mode);
+ IvlDirPath (const char*);
+ IvlDirPath (const char*, const char*, ...);
+ ~IvlDirPath ();
void Append (const char*);
void Prepend (const char*);
void AppendEnvPath (const char*, char sep = ':');