summaryrefslogtreecommitdiff
path: root/utils/DirPath.h
diff options
context:
space:
mode:
authorsc2000-11-28 14:19:35 +0000
committersc2000-11-28 14:19:35 +0000
commit325530e630c68c7c10a2f4339f5b43434fcd0329 (patch)
tree8e655f6002598176ed0e9e5e0ba3bcb0971c434d /utils/DirPath.h
parentb8af7905fd61ce5cb2c94da78ccc9e051f9ceddc (diff)
downloadivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.zip
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.gz
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.bz2
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.xz
Incorporation into IvyLeague
Ccu -> Ivl ccu -> ivl Smart pointers disappear (too dangerous) Imakefile disappears (Makefile now) An empty cplus_bugs.h has been created locally
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 = ':');