24 lines
316 B
C++
24 lines
316 B
C++
#ifndef _BODY_MAP_H
|
|
#define _BODY_MAP_H
|
|
|
|
#include <set>
|
|
#include <cstdint>
|
|
|
|
#include <body/limb.h>
|
|
|
|
namespace mrntt {
|
|
namespace body {
|
|
|
|
class BodyMap {
|
|
public:
|
|
BodyMap() = default;
|
|
~BodyMap() = default;
|
|
|
|
std::set<uint32_t, Limb> limbs;
|
|
};
|
|
|
|
} // namespace body
|
|
} // namespace mrntt
|
|
|
|
#endif // _BODY_MAP_H
|