about summary refs log tree commit diff stats
path: root/src/user.h
blob: f08840bb463b528e164e9b166f3bd696d8f9dc10 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef USER_H_BF3AB38C
#define USER_H_BF3AB38C

#include <string>
#include <set>

namespace twitter {
  
  class client;
  
  typedef unsigned long long user_id;
  
  class user {
    public:
      
      user(const client& tclient, std::string data);
      
      user_id getID() const
      {
        return _id;
      }
      
      std::string getScreenName() const
      {
        return _screen_name;
      }
      
      std::string getName() const
      {
        return _name;
      }
      
      bool operator==(const user& other) const
      {
        return _id == other._id;
      }
      
      bool operator!=(const user& other) const
      {
        return _id != other._id;
      }
      
      std::set<user_id> getFriends() const;
      std::set<user_id> getFollowers() const;
      void follow() const;
      void unfollow() const;
      
    private:
      
      const client& _client;
      user_id _id;
      std::string _screen_name;
      std::string _name;
  };
  
};

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