source: issm/branches/trunk-jpl-damage/src/c/Container/Elements.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: 972 bytes
Line 
1/*!\file: Elements.h
2 * \brief prototypes for Elements.h
3 */
4
5#ifndef _CONTAINER_ELEMENTS_H_
6#define _CONTAINER_ELEMENTS_H_
7
8/*forward declarations */
9class Materials;
10class Parameters;
11class Elements;
12class Vertices;
13class Loads;
14class Nodes;
15class DataSet;
16class Inputs;
17
18class Elements: public DataSet{
19
20 public:
21
22 /*constructors, destructors: {{{*/
23 Elements();
24 ~Elements();
25 /*}}}*/
26 /*numerics: {{{*/
27 void Configure(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
28 void DeleteResults(void);
29 void ProcessResultsUnits(void);
30 void SetCurrentConfiguration(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
31 void ToResults(Results* results,Parameters* parameters);
32 Patch* ResultsToPatch(void);
33 int NumberOfElements(void);
34 void InputDuplicate(int input_enum,int output_enum);
35 /*}}}*/
36
37};
38
39#endif //ifndef _ELEMENTS_H_
Note: See TracBrowser for help on using the repository browser.