Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #ifndef RC_GENICAM_API_INTERFACE
00037 #define RC_GENICAM_API_INTERFACE
00038
00039 #include "system.h"
00040
00041 #include <mutex>
00042
00043 namespace rcg
00044 {
00045
00046 class Device;
00047
00054 class Interface : public std::enable_shared_from_this<Interface>
00055 {
00056 public:
00057
00063 Interface(const std::shared_ptr<System> &parent,
00064 const std::shared_ptr<const GenTLWrapper> &gentl, const char *id);
00065 ~Interface();
00066
00073 std::shared_ptr<System> getParent() const;
00074
00081 const std::string &getID() const;
00082
00089 void open();
00090
00096 void close();
00097
00106 std::vector<std::shared_ptr<Device> > getDevices();
00107
00116 std::shared_ptr<Device> getDevice(const char *devid);
00117
00127 std::string getDisplayName();
00128
00138 std::string getTLType();
00139
00149 std::shared_ptr<GenApi::CNodeMapRef> getNodeMap();
00150
00157 void *getHandle() const;
00158
00159 private:
00160
00161 Interface(class Interface &);
00162 Interface &operator=(const Interface &);
00163
00164 std::shared_ptr<System> parent;
00165 std::shared_ptr<const GenTLWrapper> gentl;
00166 std::string id;
00167
00168 std::mutex mtx;
00169
00170 int n_open;
00171 void *ifh;
00172
00173 std::shared_ptr<CPort> cport;
00174 std::shared_ptr<GenApi::CNodeMapRef> nodemap;
00175
00176 std::vector<std::weak_ptr<Device> > dlist;
00177 };
00178
00179 }
00180
00181 #endif