summaryrefslogtreecommitdiffstats
path: root/IdManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'IdManager.h')
-rw-r--r--IdManager.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/IdManager.h b/IdManager.h
deleted file mode 100644
index 8f846a9..0000000
--- a/IdManager.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef IDMANAGER_H_
-#define IDMANAGER_H_
-
-#include <string>
-#include <set>
-#include <map>
-
-
-class IdManager {
- private:
- std::set<std::string> usedIds;
- std::map<std::string, unsigned long> prefixMap;
-
- bool isValid(const std::string &id) const;
- bool unique(const std::string &id) const;
-
- public:
- bool add(const std::string &id);
- bool remove(const std::string &id);
-
- bool valid(const std::string &id) const;
-
- std::string generate(const std::string &prefix);
-};
-
-#endif /*IDMANAGER_H_*/