paramparser.h 636 B

1234567891011121314151617181920212223
  1. #ifndef __PARAMPARSE_H
  2. #define __PARAMPARSE_H
  3. #include <bfc/parse/pathparse.h>
  4. class ParamParser : private PathParserW
  5. {
  6. public:
  7. ParamParser(const wchar_t *str, const wchar_t *sep=L";", int unique=0) : PathParserW(str, sep, unique) {}
  8. int findGuid(GUID g);
  9. int findString(const wchar_t *str);
  10. int hasGuid(GUID g) { return findGuid(g) >= 0; }
  11. int hasString(const wchar_t *str) { return findString(str) >= 0; }
  12. const wchar_t *enumItem(int element) { return enumString(element); }
  13. int getNumItems() { return getNumStrings(); }
  14. const wchar_t *getLastItem() { return getLastString(); }
  15. };
  16. #endif