source:
XMLIO_V2/dev/trunk/src/XMLIO/field.hpp
@
79
Last change on this file since 79 was 79, checked in by ymipsl, 12 years ago | |
---|---|
File size: 384 bytes |
Rev | Line | |
---|---|---|
[79] | 1 | #ifndef FIELD_HPP |
2 | #define FIELD_HPP | |
3 | ||
4 | #include "base_object.hpp" | |
5 | #include "object_template.hpp" | |
6 | #include "xmlio_std.hpp" | |
7 | ||
8 | ||
9 | class Field : public CObjectTemplate<Field>, public CFieldAttribut | |
10 | { | |
11 | public: | |
12 | ||
13 | Field(void) : CObjectTemplate<Field>() {} ; | |
14 | Field(const string & Id) : CObjectTemplate<Field>(Id) {} ; | |
15 | static const char * getName(void) { return "field" ; } | |
16 | }; | |
17 | ||
18 | ||
19 | #endif |
Note: See TracBrowser
for help on using the repository browser.