]> Creatis software - gdcm.git/blobdiff - src/gdcmUtil.h
Commenataires?
[gdcm.git] / src / gdcmUtil.h
index bfa1373da89bd9d05199e03d76f2cb9cfcc83898..32f68172b2576a8fb58f541a8e969ea7fef2420e 100644 (file)
@@ -1,15 +1,20 @@
+// gdcmUtil.h
+
 #include <iostream>
+using namespace std;
+
 class gdcmDebug {
 private:
        int DebugLevel;
 public:
-       gdcmDebug(int);
+       gdcmDebug(int  = 0);
        void Verbose(int, const char*, const char* ="");
-       void Error(bool, const char*, const char*);
+       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);
+istream & eatwhite(istream & is);
 
 extern gdcmDebug dbg;