Easemob Windows SDK
emlogininfo.h
1 /************************************************************
2  * * EaseMob CONFIDENTIAL
3  * __________________
4  * Copyright (C) 2015 EaseMob Technologies. All rights reserved.
5  *
6  * NOTICE: All information contained herein is, and remains
7  * the property of EaseMob Technologies.
8  * Dissemination of this information or reproduction of this material
9  * is strictly forbidden unless prior written permission is obtained
10  * from EaseMob Technologies.
11  */
12 
13 #ifndef __easemob__emlogininfo__
14 #define __easemob__emlogininfo__
15 
16 #include <string>
17 
18 namespace easemob
19 {
20 class EASEMOB_API EMLoginInfo
21 {
22 public:
23  virtual ~EMLoginInfo() {}
24  virtual const std::string& loginUser() const = 0;
25  virtual const std::string& loginPassword() const = 0;
26  virtual const std::string& loginToken() const = 0;
27 };
28 }
29 
30 #endif /* defined(__easemob__emlogininfo__) */
Definition: emlogininfo.h:20
Definition: emattributevalue.h:28