-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStereoCD.h
More file actions
34 lines (28 loc) · 751 Bytes
/
StereoCD.h
File metadata and controls
34 lines (28 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//////////////////////////////////////////
// Workfile : StereoCD.h
// Author : Michael Enzelsberger
// Date : 09.01.2021
// Description : Header for StereoCD-Devices.
//////////////////////////////////////////
#ifndef STEREOCD_H
#define STEREOCD_H
#include "Object.h"
#include "Device.h"
#include <fstream>
#include "TStateCD.h"
class StereoCD : public Device, public Object
{
public:
//Print function
void Info(std::ostream& ost) const override;
//Set functions
void SetState(TStatePower const& state) override;
void SetStateCD(TStateCD const& state);
//Get functions
TStatePower GetState() const override;
TStateCD GetStateCD() const;
using SPtr = std::shared_ptr<StereoCD>;
private:
TStateCD mStateCD = TStateCD::eClosed;
};
#endif