about summary refs log tree commit diff stats
path: root/src/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list.h')
-rw-r--r--src/list.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/list.h b/src/list.h new file mode 100644 index 0000000..3876f2d --- /dev/null +++ b/src/list.h
@@ -0,0 +1,16 @@
1#ifndef LIST_H_D7DEA7D8
2#define LIST_H_D7DEA7D8
3
4#include <string>
5
6namespace twitter {
7
8 class list {
9 public:
10 list();
11 list(std::string data);
12 };
13
14};
15
16#endif /* end of include guard: LIST_H_D7DEA7D8 */