Start cleaning geometry module.
This commit is contained in:
parent
26ecae46b3
commit
cd688f608f
52 changed files with 493 additions and 277 deletions
12
src/core/AbstractNamedItem.h
Normal file
12
src/core/AbstractNamedItem.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
class AbstractNamedItem
|
||||
{
|
||||
public:
|
||||
~AbstractNamedItem() = default;
|
||||
protected:
|
||||
std::string mName;
|
||||
std::string mSymbol;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue