20 lines
293 B
C++
20 lines
293 B
C++
|
|
#ifndef _EXTROSPECTOR_H
|
||
|
|
#define _EXTROSPECTOR_H
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
class Extrospector
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
Extrospector(uint32_t _id, uint32_t _value = 0)
|
||
|
|
: id(_id), value(_value)
|
||
|
|
{}
|
||
|
|
~Extrospector() = default;
|
||
|
|
|
||
|
|
public:
|
||
|
|
uint32_t id;
|
||
|
|
uint64_t value;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // _EXTROSPECTOR_H
|