| 112 | //! Add a heap property to the list |
| 113 | template <typename T> |
| 114 | void AddProperty(const char *name, T *in) { |
| 115 | AddProperty(name, (Base *)new THeapData<T>(in)); |
| 116 | } |
| 117 | |
| 118 | //! Add a static by-value property to the list |
| 119 | template <typename T> |
no outgoing calls
no test coverage detected