18 lines
247 B
C++
18 lines
247 B
C++
|
|
#ifndef _MRNTT_BODYMAP_BODY_H
|
||
|
|
#define _MRNTT_BODYMAP_BODY_H
|
||
|
|
|
||
|
|
namespace mrntt {
|
||
|
|
namespace bodyMap {
|
||
|
|
|
||
|
|
class Body
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
Body() = default;
|
||
|
|
~Body() = default;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace bodyMap
|
||
|
|
} // namespace mrntt
|
||
|
|
|
||
|
|
#endif // _MRNTT_BODYMAP_BODY_H
|