All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ApiTokenModel.h
1 // Copyright eeGeo Ltd (2012-2015), All Rights Reserved
2 
3 #pragma once
4 
5 #include <string>
6 #include "Types.h"
7 
8 namespace Eegeo
9 {
10  namespace Web
11  {
13  {
14  public:
15  ApiTokenModel();
16  ~ApiTokenModel();
17  const std::string& GetApiKey() const;
18  void SetApiKey(const std::string& apiKey);
19  bool IsValid() const;
20  void SetValidity(bool valid);
21 
22  private:
23  std::string m_apiKey;
24  bool m_isValid;
25 
26  };
27  }
28 }