/* * \file Elements.c * \brief: implementation of the Elements 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 Elements::Elements(){{{1*/ Elements::Elements(){ return; } /*}}}*/ /*FUNCTION Elements::Elements(int in_enum){{{1*/ Elements::Elements(int in_enum): DataSet(in_enum){ //do nothing; return; } /*}}}*/ /*FUNCTION Elements::~Elements(){{{1*/ Elements::~Elements(){ return; } /*}}}*/ /*Object management*/