23 lines
245 B
C++
23 lines
245 B
C++
#ifndef MODEL_MOTORCASE_H
|
|
#define MODEL_MOTORCASE_H
|
|
|
|
enum class MotorManufacturerEnum
|
|
{
|
|
AEROTECH,
|
|
CESARONI,
|
|
LOKI,
|
|
AMW,
|
|
ESTES
|
|
};
|
|
|
|
class MotorCase
|
|
{
|
|
public:
|
|
MotorCase();
|
|
~MotorCase();
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // MODEL_MOTORCASE_H
|