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
|
Rev | Line | |
---|
[4236] | 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 */
|
---|
| 9 | class Materials;
|
---|
| 10 | class Parameters;
|
---|
| 11 | class Elements;
|
---|
| 12 | class Vertices;
|
---|
| 13 | class Loads;
|
---|
| 14 | class Nodes;
|
---|
| 15 | class DataSet;
|
---|
| 16 | class Inputs;
|
---|
| 17 |
|
---|
| 18 | class Loads: public DataSet{
|
---|
| 19 |
|
---|
| 20 | public:
|
---|
| 21 |
|
---|
[12878] | 22 | /*constructors, destructors: {{{*/
|
---|
[4236] | 23 | Loads();
|
---|
| 24 | ~Loads();
|
---|
| 25 | /*}}}*/
|
---|
[12878] | 26 | /*numerics: {{{*/
|
---|
[6411] | 27 | void Configure(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
|
---|
[4236] | 28 | int NumberOfLoads(void);
|
---|
[6411] | 29 | void SetCurrentConfiguration(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
|
---|
[4236] | 30 | /*}}}*/
|
---|
| 31 |
|
---|
| 32 | };
|
---|
| 33 |
|
---|
| 34 | #endif //ifndef _LOADS_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.