/* * config.hpp * * Created on: Aug 3, 2009 * Author: heber */ #ifndef CONFIG_HPP_ #define CONFIG_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif /** The config file. * The class contains some general parameters. */ class config { public: config(); ~config(); char *databasepath; char *defaultpath; bool FastParsing; int IsAngstroem; double Deltat; bool GetIsAngstroem() const; }; #endif /* CONFIG_HPP_ */