Eris  1.3.19
TransferInfo.h
1 #ifndef ERIS_TRANSFERINFO_H
2 #define ERIS_TRANSFERINFO_H
3 
4 #include <string>
5 
6 namespace Eris
7 {
8 
17 {
18 public:
26  TransferInfo(const std::string &host, int port, const std::string &key, const std::string &id);
27 
32  const std::string & getHost() const;
33 
38  int getPort() const;
39 
44  const std::string & getPossessKey() const;
45 
50  const std::string & getPossessEntityId() const;
51 
52 private:
53  std::string m_host;
54  int m_port;
55  std::string m_possess_key;
56  std::string m_possess_entity_id;
57 
58 };
59 
60 }
61 
62 #endif