18 lines
No EOL
680 B
C++
18 lines
No EOL
680 B
C++
// --------------------------------------------------------------------------------------
|
|
// Project: MicroManipulatorStepper
|
|
// License: MIT (see LICENSE file for full description)
|
|
// All text in here must be included in any redistribution.
|
|
// Author: M. S. (diffraction limited)
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
//*** CLASS *****************************************************************************
|
|
|
|
//--- IRobotTool ------------------------------------------------------------------------
|
|
|
|
class IRobotTool {
|
|
public:
|
|
virtual ~IRobotTool() {};
|
|
virtual void set_value(float v) = 0;
|
|
}; |