You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mitlib.pub/MITLIB/IODll/Output_HSL.h

32 lines
845 B
C++

// Output_HSL.h: interface for the COutput_HSL class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_OUTPUT_HSL_H__E01C8F2B_CE41_4969_BBBB_F3EB7A86A372__INCLUDED_)
#define AFX_OUTPUT_HSL_H__E01C8F2B_CE41_4969_BBBB_F3EB7A86A372__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "OutputBase.h"
class CAdlinkCommon_HSL;
class COutput_HSL : public COutputBase
{
public:
COutput_HSL(const COutputSetting &Setting);
virtual ~COutput_HSL();
// method to set analog output voltage
BOOL SetVoltage(double dVoltage, double dRange) override;
BOOL SetState(bool bState) override;
private:
std::unique_ptr<CAdlinkCommon_HSL> m_pCommon;
};
#endif // !defined(AFX_OUTPUT_HSL_H__E01C8F2B_CE41_4969_BBBB_F3EB7A86A372__INCLUDED_)