Rename these files and change ifdef guards

This commit is contained in:
2025-09-14 13:16:02 -04:00
parent da0ef64f62
commit 16865dc36f
7 changed files with 47 additions and 47 deletions
@@ -0,0 +1,23 @@
#ifndef MRNTT_BODYMAP_BODYMAP_H
#define MRNTT_BODYMAP_BODYMAP_H
#include <set>
#include <cstdint>
#include <bodyMap/limb.h>
namespace mrntt {
namespace bodyMap {
class BodyMap {
public:
BodyMap() = default;
~BodyMap() = default;
public:
std::set<uint32_t, Limb> limbs;
};
} // namespace bodyMap
} // namespace mrntt
#endif // MRNTT_BODYMAP_BODYMAP_H