X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmUtil.h;h=32f68172b2576a8fb58f541a8e969ea7fef2420e;hb=e06d61ba347d7f5f692a682434e089d939f85653;hp=d06e8cdeac839da0f96be9e4f3a1f677cbb016c1;hpb=a631c1cc8f402dcef308999aefe5aec531934e8f;p=gdcm.git diff --git a/src/gdcmUtil.h b/src/gdcmUtil.h index d06e8cde..32f68172 100644 --- a/src/gdcmUtil.h +++ b/src/gdcmUtil.h @@ -1,15 +1,20 @@ +// gdcmUtil.h + #include +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(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;