source: issm/trunk-jpl/src/c/classes/objects/Materials/Materials.h@ 14996

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"
6class Parameters;
7class Elements;
8class Vertices;
9class Loads;
10class Nodes;
11
12/*! \brief Declaration of Materials class.
13 *
14 * Declaration of Materials class. Materials are vector lists (Containers) of Material objects.
15 */
16class 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.