about summary refs log tree commit diff stats
path: root/src/user.cpp
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2016-05-22 19:21:00 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2016-05-22 19:21:00 -0400
commit62f6aae6c313b2a2a493c5147ec831a66eba01ff (patch)
treea69adb7516ed3c54f3291dae14a582ecb9d0d5b2 /src/user.cpp
parentcdea9154ff180e95dfbdd8e0647922ca8afa3d46 (diff)
downloadlibtwittercpp-62f6aae6c313b2a2a493c5147ec831a66eba01ff.tar.gz
libtwittercpp-62f6aae6c313b2a2a493c5147ec831a66eba01ff.tar.bz2
libtwittercpp-62f6aae6c313b2a2a493c5147ec831a66eba01ff.zip
Added utility function to generate tweet reply prefill
Diffstat (limited to 'src/user.cpp')
-rw-r--r--src/user.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/user.cpp b/src/user.cpp index 9352938..0fa1e39 100644 --- a/src/user.cpp +++ b/src/user.cpp
@@ -42,5 +42,10 @@ namespace twitter {
42 { 42 {
43 return _id == other._id; 43 return _id == other._id;
44 } 44 }
45
46 bool user::operator!=(const user& other) const
47 {
48 return _id != other._id;
49 }
45 50
46}; 51};