#ifndef AXIS_COMMAND_H #define AXIS_COMMAND_H class AxisCommand { public: virtual void Execute(float value) = 0; }; #endif