]> git.donarmstrong.com Git - mothur.git/blobdiff - shared.h
fixed bug in sharedcommand and parselistcommand and changed file extension of sorenso...
[mothur.git] / shared.h
index d4086a562ca7047c8142c0c7783a0641c874a4d0..0607c13974f4a089505f1bca7221413305e504f6 100644 (file)
--- a/shared.h
+++ b/shared.h
@@ -21,19 +21,19 @@ using namespace std;
 #include <sstream>
 #include <map>
 #include "sharedrabundvector.h"
-#include "listvector.hpp"
+#include "sharedlistvector.h"
 #include "globaldata.hpp"
 
 class Shared {
        public:
                Shared();
                ~Shared();
-               void getSharedVectors(int, ListVector*);
+               void getSharedVectors(int, SharedListVector*);
                map<string, SharedRAbundVector*> sharedGroups; //string is groupname, SharedVector* is out info for that group
                
        private:
                GlobalData* globaldata;
-               void parse(int, ListVector*);
+               void parse(int, SharedListVector*);
                vector< map<string, SharedRAbundVector*> > sharedRAbund;  //contains all the info needed to create the .shared file not sure if we will need 
 };