KrisLibrary  1.0.0
DirtyData.h
1 #ifndef DIRTY_DATA_H
2 #define DIRTY_DATA_H
3 
4 template <class type>
5 struct DirtyData : public type
6 {
7  DirtyData() : dirty(true) {}
8  DirtyData(const type& t) : type(t),dirty(true) {}
9 
10  bool dirty;
11 };
12 
13 #endif
Definition: DirtyData.h:5