CellModules
BaseBody.hpp
Go to the documentation of this file.
1//'''
2#ifndef BASEPROJECT_BASEBODY_HPP
3#define BASEPROJECT_BASEBODY_HPP
4
5template<typename embedded_plugin_t>
6class BaseBody {
7
8protected:
10
11public:
12 BaseBody() = default;
13
14 inline void setCellPlugin(embedded_plugin_t *_cellPlugin){ this->cellPlugin = _cellPlugin; }
15 inline void onCellPluginLinking(){}
16
17
18};
19
20
21#endif //BASEPROJECT_CELLBODY_HPP
22//'''
void setCellPlugin(embedded_plugin_t *_cellPlugin)
Definition: BaseBody.hpp:14
embedded_plugin_t * cellPlugin
Definition: BaseBody.hpp:9
void onCellPluginLinking()
Definition: BaseBody.hpp:15
BaseBody()=default