aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/device/ipc/ipcb210.h
blob: fbcf1da120477648602d20d24da245dcd204ab67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef IPC_B210_H
#define IPC_B210_H

#include "magicwrap.h"
#include "IPCDevice.h"
#include "../uhd/UHDDevice.h"




class IPC_b210 : public IPCDevice {
    magicwrap m;
    public:
    template<typename... Args>
    IPC_b210(Args... args): IPCDevice(args...){
        //drvtest::main(0,0);
    }
    virtual ~IPC_b210() {};

	int foo(){return 32;}
//    void ipc_sock_close() override {};
};

#endif // IPC_B210_H