LAT Hologramm-Software 2.0
Loading...
Searching...
No Matches
Device.m
Go to the documentation of this file.
1classdef (Abstract) Device < handle
2 properties
3 connected = false;
4 end
6 methods (Abstract)
7 connect(obj);
8 disconnect(obj);
9 end
10end
11
12
Definition: Device.m:6