ed
property.h
Go to the documentation of this file.
1 #ifndef ED_PROPERTY_H_
2 #define ED_PROPERTY_H_
3 
4 #include "ed/types.h"
5 #include "ed/variant.h"
6 
7 namespace ed
8 {
9 
10 class PropertyKeyDBEntry;
11 
12 struct Property
13 {
14  Property() : entry(0), revision(-1) {}
15 
18  unsigned long revision;
19 };
20 
21 } // end namespace
22 
23 #endif
ed::Property::Property
Property()
Definition: property.h:14
types.h
ed::Property::entry
const PropertyKeyDBEntry * entry
Definition: property.h:17
ed::Property::value
Variant value
Definition: property.h:16
ed::Variant
Definition: variant.h:49
ed::PropertyKeyDBEntry
Definition: property_key_db.h:13
variant.h
ed
Definition: convex_hull.h:8
ed::Property::revision
unsigned long revision
Definition: property.h:18
ed::Property
Definition: property.h:12