18 lines
194 B
C++
18 lines
194 B
C++
#ifndef MODEL_MOTORCASE_H
|
|
#define MODEL_MOTORCASE_H
|
|
|
|
namespace model
|
|
{
|
|
class MotorCase
|
|
{
|
|
public:
|
|
MotorCase();
|
|
~MotorCase();
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
} // namespace model
|
|
#endif // MODEL_MOTORCASE_H
|