diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-08-20 13:56:23 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-08-20 13:56:23 -0400 |
commit | 69fc8d805396b889b5e8c1c88e8129d93db77d29 (patch) | |
tree | 6b807bd9332c65b65066e247d4d00fd5e4118d2e /src/list.h | |
parent | 442f1ee071152be04c4184473ddfee5040795b76 (diff) | |
download | libtwittercpp-69fc8d805396b889b5e8c1c88e8129d93db77d29.tar.gz libtwittercpp-69fc8d805396b889b5e8c1c88e8129d93db77d29.tar.bz2 libtwittercpp-69fc8d805396b889b5e8c1c88e8129d93db77d29.zip |
Updated API to use exceptions and make tweet/user objects more helpful
Diffstat (limited to 'src/list.h')
-rw-r--r-- | src/list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/list.h b/src/list.h index 3876f2d..69085b4 100644 --- a/src/list.h +++ b/src/list.h | |||
@@ -6,9 +6,9 @@ | |||
6 | namespace twitter { | 6 | namespace twitter { |
7 | 7 | ||
8 | class list { | 8 | class list { |
9 | public: | 9 | public: |
10 | list(); | 10 | |
11 | list(std::string data); | 11 | explicit list(std::string data); |
12 | }; | 12 | }; |
13 | 13 | ||
14 | }; | 14 | }; |