diff options
Diffstat (limited to 'c/datalistview.h')
-rw-r--r-- | c/datalistview.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/c/datalistview.h b/c/datalistview.h new file mode 100644 index 0000000..011f067 --- /dev/null +++ b/c/datalistview.h @@ -0,0 +1,15 @@ +#ifndef DATALISTVIEW_H +#define DATALISTVIEW_H + +#include "listview.h" + +struct DataListView : public ListView +{ + DataListView(void); + void ShowEpisode(int); +}; + +#define DLVSIKEY 0 +#define DLVSIVALUE 1 + +#endif |