#ifndef ROOT_TClassEdit
#define ROOT_TClassEdit
#include "RConfig.h"
#include <string>
#include <vector>
#ifndef ROOT_ESTLType
#include "ESTLType.h"
#endif
#ifdef R__OLDHPACC
namespace std {
using ::string;
using ::vector;
}
#endif
#if defined(__CYGWIN__)
#include <sstream>
namespace std {
template <typename T>
string to_string(T value) {
ostringstream os;
os << value;
return os.str();
}
}
#endif
namespace TClassEdit {
enum EModType {
kNone = 0,
kDropTrailStar = 1<<0,
kDropDefaultAlloc = 1<<1,
kDropAlloc = 1<<2,
kInnerClass = 1<<3,
kInnedMostClass = 1<<4,
kDropStlDefault = 1<<5,
kDropComparator = 1<<6,
kDropAllDefault = 1<<7,
kLong64 = 1<<8,
kDropStd = 1<<9
};
enum ESTLType {
kNotSTL = ROOT::kNotSTL,
kVector = ROOT::kSTLvector,
kList = ROOT::kSTLlist,
kDeque = ROOT::kSTLdeque,
kMap = ROOT::kSTLmap,
kMultiMap = ROOT::kSTLmultimap,
kSet = ROOT::kSTLset,
kMultiSet = ROOT::kSTLmultiset,
kBitSet = ROOT::kSTLbitset,
kEnd = 9
};
struct TSplitType {
const char *fName;
std::vector<std::string> fElements;
int fNestedLocation;
TSplitType(const char *type2split, EModType mode = TClassEdit::kNone);
int IsSTLCont(int testAlloc=0) const;
void ShortType(std::string &answer, int mode);
private:
TSplitType(const TSplitType&);
TSplitType &operator=(const TSplitType &);
};
std::string CleanType (const char *typeDesc,int mode = 0,const char **tail=0);
bool IsDefAlloc(const char *alloc, const char *classname);
bool IsDefAlloc(const char *alloc, const char *keyclassname, const char *valueclassname);
bool IsDefComp (const char *comp , const char *classname);
bool IsSTLBitset(const char *type);
int IsSTLCont (const char *type,int testAlloc=0);
bool IsStdClass(const char *type);
bool IsVectorBool(const char *name);
std::string GetLong64_Name(const char *original);
std::string GetLong64_Name(const std::string& original);
int GetSplit (const char *type, std::vector<std::string> &output, int &nestedLoc, EModType mode = TClassEdit::kNone);
int STLKind (const char *type);
int STLArgs (int kind);
std::string ResolveTypedef(const char *tname, bool resolveAll = false);
std::string ShortType (const char *typeDesc, int mode);
std::string InsertStd(const char *tname);
}
#endif