about summary refs log tree commit diff stats
path: root/src/list.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-08-30 19:27:14 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-08-30 19:27:14 -0400
commit62bb8a055fea0a1f3e25f757ca8201f54bae6012 (patch)
tree46f94b47d019281d836d5ffef2231754b5cb7809 /src/list.h
parentcc57105f29b4095daad03273bc1a882368e75664 (diff)
downloadlibtwittercpp-62bb8a055fea0a1f3e25f757ca8201f54bae6012.tar.gz
libtwittercpp-62bb8a055fea0a1f3e25f757ca8201f54bae6012.tar.bz2
libtwittercpp-62bb8a055fea0a1f3e25f757ca8201f54bae6012.zip
Removed more stream-related classes
Among the deleted classes are list and direct_message. These classes were just stubs because the streaming API was able to return those objects. libtwitter++ does not yet actually support these objects, so the stub classes will be deleted for now.

refs #3
Diffstat (limited to 'src/list.h')
-rw-r--r--src/list.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/list.h b/src/list.h deleted file mode 100644 index 1bf034f..0000000 --- a/src/list.h +++ /dev/null
@@ -1,18 +0,0 @@
1#ifndef LIST_H_D7DEA7D8
2#define LIST_H_D7DEA7D8
3
4#include <string>
5
6namespace twitter {
7
8 class list {
9 public:
10
11 list() {}
12 explicit list(std::string data);
13
14 };
15
16};
17
18#endif /* end of include guard: LIST_H_D7DEA7D8 */