X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmUtil.h;h=4f19b3ae23966d62b26d944794c4fdef200105ce;hb=8afb2999a90aefbce7662c43fe19dad237d49331;hp=bfa1373da89bd9d05199e03d76f2cb9cfcc83898;hpb=70e24c6c61481f9836e26b6b44a9670d92a4f43b;p=gdcm.git diff --git a/src/gdcmUtil.h b/src/gdcmUtil.h index bfa1373d..4f19b3ae 100644 --- a/src/gdcmUtil.h +++ b/src/gdcmUtil.h @@ -1,15 +1,18 @@ #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(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;