cumbia-tango 1.x
C++ multi threaded library based on cumbia and the Tango control system
cudevicefactory_i.h
Go to the documentation of this file.
1#ifndef CUDEVICEFACTORY_I_H
2#define CUDEVICEFACTORY_I_H
3
4class TDevice;
5
6#include <string>
7
9{
10public:
11 virtual ~CuDeviceFactory_I() {};
12
13 virtual TDevice *getDevice(const std::string &name, const std::string &thread_tok) = 0;
14 virtual int removeRef(const std::string& devname, const std::string &thread_tok) = 0;
15};
16
17#endif // CUDEVICEFACTORY_I_H
Definition cudevicefactory_i.h:9
virtual ~CuDeviceFactory_I()
Definition cudevicefactory_i.h:11
virtual int removeRef(const std::string &devname, const std::string &thread_tok)=0
virtual TDevice * getDevice(const std::string &name, const std::string &thread_tok)=0
Definition tdevice.h:13