]> git.donarmstrong.com Git - mothur.git/blobdiff - nameassignment.hpp
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / nameassignment.hpp
diff --git a/nameassignment.hpp b/nameassignment.hpp
deleted file mode 100644 (file)
index 758a080..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef NAMEASSIGNMENT_HPP
-#define NAMEASSIGNMENT_HPP
-
-#include "mothur.h"
-#include "listvector.hpp"
-
-class NameAssignment : public map<string,int> {
-public:
-       NameAssignment(string);
-       NameAssignment(){};
-       void readMap();
-       ListVector getListVector();
-       int get(string);
-       string get(int);
-       void print(ostream&);
-       void push_back(string);
-private:
-       ifstream fileHandle;
-       ListVector list;
-       map<int, string> reverse;
-       MothurOut* m;
-};
-
-
-
-
-#endif