source: issm/trunk/src/c/DataSet/Loads.cpp@ 4214

Last change on this file since 4214 was 4214, checked in by Eric.Larour, 15 years ago

New Loads class

File size: 810 bytes
Line 
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
23using namespace std;
24/*}}}*/
25
26/*Object constructors and destructor*/
27/*FUNCTION Loads::Loads(){{{1*/
28Loads::Loads(){
29 return;
30}
31/*}}}*/
32/*FUNCTION Loads::Loads(int in_enum){{{1*/
33Loads::Loads(int in_enum): DataSet(in_enum){
34 //do nothing;
35 return;
36}
37/*}}}*/
38/*FUNCTION Loads::~Loads(){{{1*/
39Loads::~Loads(){
40 return;
41}
42/*}}}*/
43
44/*Object management*/
Note: See TracBrowser for help on using the repository browser.