]> Creatis software - gdcm.git/blobdiff - src/gdcmUtil.h
* gdcmPython/__init__.py fix of GDCM_DICT_PATH which was not
[gdcm.git] / src / gdcmUtil.h
index 63025122aaedc860df3181073a49fb2a6bedd409..3432bf933ae2ecfd2f3fa33e50ccde5bef15db19 100644 (file)
@@ -1,4 +1,8 @@
+// gdcmUtil.h
+
 #include <iostream>
+#include <vector>
+#include <string>
 using namespace std;
 
 class gdcmDebug {
@@ -10,8 +14,13 @@ public:
        void Error(bool, const char*,  const char* ="");
        void Error(const char*, const char* ="", const char* ="");
        void Assert(int, bool, const char*, const char*);
+       void Exit(int);
 };
 
 istream & eatwhite(istream & is);
 
+void Tokenize (const string& str,
+               vector<string>& tokens,
+               const string& delimiters = " ");
+
 extern gdcmDebug dbg;