annotate include/QObjectEntity.h @ 252:37eed70de029

More things broken than fixed. Rolling back to 263
author maxter
date Sat, 22 Aug 2009 12:50:58 +0000
parents 7664de4a55e5
children 34a37904ff77
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
e78566595089 initial import
mandel
parents:
diff changeset
1 #ifndef QQOBJECTENTITY_H
e78566595089 initial import
mandel
parents:
diff changeset
2 #define QQOBJECTENTITY_H
e78566595089 initial import
mandel
parents:
diff changeset
3
252
37eed70de029 More things broken than fixed. Rolling back to 263
maxter
parents: 248
diff changeset
4 #include <cstdlib>
1
e78566595089 initial import
mandel
parents:
diff changeset
5
252
37eed70de029 More things broken than fixed. Rolling back to 263
maxter
parents: 248
diff changeset
6 class Qtd_QObjectEntity
1
e78566595089 initial import
mandel
parents:
diff changeset
7 {
e78566595089 initial import
mandel
parents:
diff changeset
8 public:
252
37eed70de029 More things broken than fixed. Rolling back to 263
maxter
parents: 248
diff changeset
9 Qtd_QObjectEntity(void *d_ptr) { _d_ptr = d_ptr; }
37eed70de029 More things broken than fixed. Rolling back to 263
maxter
parents: 248
diff changeset
10 void *d_entity() const { return _d_ptr; }
1
e78566595089 initial import
mandel
parents:
diff changeset
11
252
37eed70de029 More things broken than fixed. Rolling back to 263
maxter
parents: 248
diff changeset
12 private:
37eed70de029 More things broken than fixed. Rolling back to 263
maxter
parents: 248
diff changeset
13 void *_d_ptr;
1
e78566595089 initial import
mandel
parents:
diff changeset
14 };
e78566595089 initial import
mandel
parents:
diff changeset
15
e78566595089 initial import
mandel
parents:
diff changeset
16 #endif // QQOBJECTENTITY_H