12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #ifndef RTTR_DATA_ADDRESS_CONTAINER_H_
- #define RTTR_DATA_ADDRESS_CONTAINER_H_
- #include "rttr/detail/base/core_prerequisites.h"
- #include <memory>
- namespace rttr
- {
- class type;
- namespace detail
- {
- struct data_address_container
- {
- type m_type;
- type m_wrapped_type;
- void* m_data_address;
- void* m_data_address_wrapped_type;
- };
- }
- }
- #endif
|