source:
XMLIO_V2/trunk/src/XMLIO/field.hpp
@
68
Last change on this file since 68 was 68, checked in by ymipsl, 13 years ago | |
---|---|
File size: 384 bytes |
Line | |
---|---|
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.