IAsset.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
17 #pragma once
18 
19 #include <string>
20 
21 namespace EdgeVisDecoderSDK
22 {
23  class Server;
24 
25  class IAsset
26  {
27  public:
28 
29  virtual ~IAsset() {};
30 
36  virtual Server GetServer() const = 0;
37 
43  virtual std::wstring Name() const = 0;
44 
50  virtual std::wstring UniqueID() const = 0;
51 
57  virtual std::wstring DeviceID() const = 0;
58 
64  virtual std::wstring Version() const = 0;
65 
71  virtual std::wstring Domain() const = 0;
72 
78  virtual std::wstring Groups() const = 0;
79  };
80 }
virtual std::wstring Version() const =0
Returns the version of the asset.
An Asset is a tangible asset on the system such as an Encoder or a Server.
Definition: IAsset.h:25
virtual std::wstring Domain() const =0
Returns the domain the asset belongs to.
virtual std::wstring UniqueID() const =0
Returns the Unique ID of the asset.
virtual std::wstring Groups() const =0
Returns the group the asset belongs to.
virtual Server GetServer() const =0
Returns the Server object associated with this asset.
A Server interface is used to make a connection to an EdgeVis server.
Definition: Server.h:54
virtual std::wstring Name() const =0
Returns the name of the asset.
The EdgeVis Decoder SDK namespace.
virtual std::wstring DeviceID() const =0
Returns the ID of the device that the asset belongs to.