about summary refs log tree commit diff stats
path: root/src/user.h
blob: 0af40d600f8e21011f22fe9515a9e483c3f59c38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef USER_H_BF3AB38C
#define USER_H_BF3AB38C

#include <string>

namespace twitter {
  
  typedef unsigned long long user_id;
  
  class user {
    public:
      user();
      user(std::string data);
      
      user_id getID() const;
      std::string getScreenName() const;
      std::string getName() const;
      
      operator bool() const;
      bool operator==(const user& other) const;
      
    private:
      bool _valid = false;
      user_id _id;
      std::string _screen_name;
      std::string _name;
  };
  
};

#endif /* end of include guard: USER_H_BF3AB38C */