X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedordervector.h;fp=sharedordervector.h;h=30d655f7347c07fcb9a887ac5330959702e09382;hb=37519fc35c0eb1523e84227517694c4015847c6d;hp=e941c7e5f860b770c5a766027d3cc658c94e3259;hpb=fb01d5df390a98313ca095a812fc240dc079d084;p=mothur.git diff --git a/sharedordervector.h b/sharedordervector.h index e941c7e..30d655f 100644 --- a/sharedordervector.h +++ b/sharedordervector.h @@ -49,15 +49,15 @@ public: SharedOrderVector(ifstream&); ~SharedOrderVector(){}; - void set(int, int, int, string); //index, OTU, abundance, group + individual get(int); - void push_back(int, int, string); //OTU, abundance, group void resize(int); int size(); void print(ostream&); vector::iterator begin(); vector::iterator end(); - + void push_back(int, int, string); //OTU, abundance, group MUST CALL UPDATE STATS AFTER PUSHBACK!!! + void updateStats(); int getNumBins(); int getNumSeqs(); @@ -80,7 +80,8 @@ private: int numBins; int numSeqs; bool needToUpdate; - void updateStats(); + void set(int, int, int, string); //index, OTU, abundance, group + }; #endif