The Winamp Remote Control suite
a remote control client and plugin for Winamp 2.x, 5.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ContextInfo.h
Go to the documentation of this file.
1 
2 
3 #ifndef ContextInfoH
4 #define ContextInfoH
5 
6 
7 
8 #include <string>
9 
13 namespace WinampRemote
14 {
15 
19 namespace Context
20 {
21 
26 {
27 
28 public:
29 
33  ContextInfo();
34 
38  virtual ~ContextInfo()
39  {
40  }
41 
42  std::string const computername() { return m_computername; };
43  std::string const username() { return m_username; };
44 
45 
46 private:
47 
48  std::string m_computername;
49  std::string m_username;
50 
51 
52 
53 };
54 } // end of namespace Context
55 } // end of namespace WinampRemote
56 
57 #endif