missing files

This commit is contained in:
0x23 2026-03-13 15:33:09 +01:00
parent f6a42d9fb0
commit e754a6b2d8
3 changed files with 181 additions and 0 deletions

View file

@ -0,0 +1,18 @@
// --------------------------------------------------------------------------------------
// 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;
};