diff options
author | geronimo <geronimo013@gmx.de> | 2012-07-19 15:10:24 +0200 |
---|---|---|
committer | geronimo <geronimo013@gmx.de> | 2012-07-19 15:10:24 +0200 |
commit | 04a867b018a8c6761047ef8878a4434692673084 (patch) | |
tree | 79109d9d6c053b9c5446f89e9cc07d30380a0fa1 /cmps/serverlib/include | |
parent | 94023c37e288048eb22a2d4e3dfa8529fe3a3816 (diff) | |
download | cmp-04a867b018a8c6761047ef8878a4434692673084.tar.gz cmp-04a867b018a8c6761047ef8878a4434692673084.tar.bz2 |
add categories to json result message
Diffstat (limited to 'cmps/serverlib/include')
-rw-r--r-- | cmps/serverlib/include/JSonListAssembler.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/cmps/serverlib/include/JSonListAssembler.h b/cmps/serverlib/include/JSonListAssembler.h index bfc68ed..6185508 100644 --- a/cmps/serverlib/include/JSonListAssembler.h +++ b/cmps/serverlib/include/JSonListAssembler.h @@ -1,25 +1,25 @@ /** * ======================== legal notice ====================== - * + * * File: JSonListAssembler.h * Created: 6. Juli 2012, 09:53 * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> * Project: cmps - the backend (server) part of compound media player - * + * * CMP - compound media player - * + * * is a client/server mediaplayer intended to play any media from any workstation * without the need to export or mount shares. cmps is an easy to use backend * with a (ready to use) HTML-interface. Additionally the backend supports * authentication via HTTP-digest authorization. * cmpc is a client with vdr-like osd-menues. - * + * * Copyright (c) 2012 Reinhard Mantey, some rights reserved! * published under Creative Commons by-sa * For details see http://creativecommons.org/licenses/by-sa/3.0/ - * + * * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp - * + * * -------------------------------------------------------------- */ #ifndef JSONLISTASSEMBLER_H @@ -29,6 +29,7 @@ #include <map> class cStringBuilder; +class cJSonWriter; class cJSonListAssembler : public cAbstractListAssembler { public: cJSonListAssembler(); @@ -40,7 +41,10 @@ protected: virtual bool OpenList(cStringBuilder &sb, std::map<int, size_t> &Categories, size_t total, size_t start = 0, uint delta = 40); virtual bool AddElement(cStringBuilder &sb, void *ListElement, bool odd); virtual bool CloseList(cStringBuilder &sb, size_t total, size_t start = 0, uint delta = 40); -}; + +private: + cJSonWriter *writer; + }; #endif /* JSONLISTASSEMBLER_H */ |