source: issm/branches/trunk-jpl-damage/src/c/Container/Loads.h@ 12878

Last change on this file since 12878 was 12878, checked in by cborstad, 13 years ago

merged trunk-jpl into trunk-jpl-damage through revision 12877

File size: 740 bytes
Line 
1/*!\file: Loads.h
2 * \brief prototypes for Loads.h
3 */
4
5#ifndef _CONTAINER_LOADS_H_
6#define _CONTAINER_LOADS_H_
7
8/*forward declarations */
9class Materials;
10class Parameters;
11class Elements;
12class Vertices;
13class Loads;
14class Nodes;
15class DataSet;
16class Inputs;
17
18class Loads: public DataSet{
19
20 public:
21
22 /*constructors, destructors: {{{*/
23 Loads();
24 ~Loads();
25 /*}}}*/
26 /*numerics: {{{*/
27 void Configure(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
28 int NumberOfLoads(void);
29 void SetCurrentConfiguration(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
30 /*}}}*/
31
32};
33
34#endif //ifndef _LOADS_H_
Note: See TracBrowser for help on using the repository browser.