00001
00002
00003
00004
00005 #ifndef ATLAS_LOAD_DEFAULTS_H
00006 #define ATLAS_LOAD_DEFAULTS_H
00007
00008 #include <Atlas/Objects/Decoder.h>
00009 #include <Atlas/Exception.h>
00010
00011 namespace Atlas { namespace Objects {
00012
00013 class DefaultLoadingException : public Atlas::Exception
00014 {
00015 public:
00016 DefaultLoadingException(const std::string& a_msg) :
00017 Atlas::Exception(a_msg) {}
00018 };
00019
00020 void loadDefaults(const std::string& filename);
00021
00022 } }
00023 #endif