/* * \file Loads.c * \brief: implementation of the Loads class, derived from DataSet class */ /*Headers: {{{1*/ #ifdef HAVE_CONFIG_H #include "config.h" #else #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" #endif #include #include #include #include #include "./DataSet.h" #include "../shared/shared.h" #include "../include/include.h" #include "../EnumDefinitions/EnumDefinitions.h" using namespace std; /*}}}*/ /*Object constructors and destructor*/ /*FUNCTION Loads::Loads(){{{1*/ Loads::Loads(){ return; } /*}}}*/ /*FUNCTION Loads::Loads(int in_enum){{{1*/ Loads::Loads(int in_enum): DataSet(in_enum){ //do nothing; return; } /*}}}*/ /*FUNCTION Loads::~Loads(){{{1*/ Loads::~Loads(){ return; } /*}}}*/ /*Object management*/