Last change
on this file since 14996 was 14996, checked in by Eric.Larour, 12 years ago |
CHG: integrated Container/ directory into src/c/classes/objects directory. No reason to have the containers
and the objects that they contain defined in different places.
|
File size:
630 bytes
|
Line | |
---|
1 | #ifndef _CONTAINER_MATERIALS_H_
|
---|
2 | #define _CONTAINER_MATERIALS_H_
|
---|
3 |
|
---|
4 | /*forward declarations */
|
---|
5 | #include "../DataSet.h"
|
---|
6 | class Parameters;
|
---|
7 | class Elements;
|
---|
8 | class Vertices;
|
---|
9 | class Loads;
|
---|
10 | class Nodes;
|
---|
11 |
|
---|
12 | /*! \brief Declaration of Materials class.
|
---|
13 | *
|
---|
14 | * Declaration of Materials class. Materials are vector lists (Containers) of Material objects.
|
---|
15 | */
|
---|
16 | class Materials: public DataSet{
|
---|
17 |
|
---|
18 | public:
|
---|
19 |
|
---|
20 | /*constructors, destructors*/
|
---|
21 | Materials();
|
---|
22 | ~Materials();
|
---|
23 |
|
---|
24 | /*numerics*/
|
---|
25 | void Configure(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
|
---|
26 |
|
---|
27 | };
|
---|
28 |
|
---|
29 | #endif //ifndef _MATERIALS_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.