Chi-Tech
chi_material.h
Go to the documentation of this file.
1#ifndef CHITECH_CHI_MATERIAL_H
2#define CHITECH_CHI_MATERIAL_H
3
4#include "ChiObject.h"
5
6namespace chi
7{
8
9/**A generic material object used to group together multiple properties.*/
10class Material : public ChiObject
11{
12private:
13 std::string name_;
14public:
16 explicit Material(const chi::InputParameters& params);
17
18
19};
20
21}
22
23#endif // CHITECH_CHI_MATERIAL_H
static InputParameters GetInputParameters()
Definition: chi_material.cc:10
std::string name_
Definition: chi_material.h:13
Material(const chi::InputParameters &params)
Definition: chi_material.cc:24