Rev | Line | |
---|
[4214] | 1 | /*
|
---|
| 2 | * \file Loads.c
|
---|
| 3 | * \brief: implementation of the Loads class, derived from DataSet class
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | /*Headers: {{{1*/
|
---|
| 7 | #ifdef HAVE_CONFIG_H
|
---|
| 8 | #include "config.h"
|
---|
| 9 | #else
|
---|
| 10 | #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
|
---|
| 11 | #endif
|
---|
| 12 |
|
---|
| 13 | #include <vector>
|
---|
| 14 | #include <functional>
|
---|
| 15 | #include <algorithm>
|
---|
| 16 | #include <iostream>
|
---|
| 17 |
|
---|
| 18 | #include "./DataSet.h"
|
---|
| 19 | #include "../shared/shared.h"
|
---|
| 20 | #include "../include/include.h"
|
---|
| 21 | #include "../EnumDefinitions/EnumDefinitions.h"
|
---|
| 22 |
|
---|
| 23 | using namespace std;
|
---|
| 24 | /*}}}*/
|
---|
| 25 |
|
---|
| 26 | /*Object constructors and destructor*/
|
---|
| 27 | /*FUNCTION Loads::Loads(){{{1*/
|
---|
| 28 | Loads::Loads(){
|
---|
| 29 | return;
|
---|
| 30 | }
|
---|
| 31 | /*}}}*/
|
---|
| 32 | /*FUNCTION Loads::Loads(int in_enum){{{1*/
|
---|
| 33 | Loads::Loads(int in_enum): DataSet(in_enum){
|
---|
| 34 | //do nothing;
|
---|
| 35 | return;
|
---|
| 36 | }
|
---|
| 37 | /*}}}*/
|
---|
| 38 | /*FUNCTION Loads::~Loads(){{{1*/
|
---|
| 39 | Loads::~Loads(){
|
---|
| 40 | return;
|
---|
| 41 | }
|
---|
| 42 | /*}}}*/
|
---|
| 43 |
|
---|
| 44 | /*Object management*/
|
---|
Note:
See
TracBrowser
for help on using the repository browser.