#pragma once
#include "dlltyp.h"
#include "regs.h"
#include "spcerr.h"
#include "spcm_drv.h"

class AWG 
{
private:
	typedef struct // dirty struct containing much card info
	{
		drv_handle cardHandle;

	} CARDINFO;

public:
	AWG(int cardID) noexcept;
};