#ifndef __OVSTRINGTOOLKIT_h #define __OVSTRINGTOOLKIT_h #include #include using namespace std; class OVStringToolKit { public: OVStringToolKit(); ~OVStringToolKit(); static int getLines(string inString, vector& outStringVectorRef); static int splitString(string inString, vector& outStringVectorRef, vector delimiterVector, bool hasDelimiter); }; #endif