File: loadDefaults.h

package info (click to toggle)
atlas-cpp 0.5.98-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,652 kB
  • ctags: 2,284
  • sloc: sh: 8,305; cpp: 6,372; python: 1,471; makefile: 216
file content (23 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// This file may be redistributed and modified only under the terms of
// the GNU Lesser General Public License (See COPYING for details).
// Copyright (C) 2000-2001 Aloril and Al Riddoch

#ifndef ATLAS_LOAD_DEFAULTS_H
#define ATLAS_LOAD_DEFAULTS_H

#include <Atlas/Objects/Decoder.h>
#include <Atlas/Exception.h>

namespace Atlas { namespace Objects {

class DefaultLoadingException : public Atlas::Exception
{
  public:
    DefaultLoadingException(const std::string& a_msg) :
                Atlas::Exception(a_msg) {}
};

void loadDefaults(const std::string& filename);

} } // namespace Atlas::Objects
#endif