Skip to content
Snippets Groups Projects
AWG.h 256 B
Newer Older
  • Learn to ignore specific revisions
  • xiyehu2's avatar
    xiyehu2 committed
    #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:
    
    xiyehu2's avatar
    xiyehu2 committed
    	AWG(int cardID) noexcept;
    
    xiyehu2's avatar
    xiyehu2 committed
    };