/* mini * * This program is distributed under the GNU General Public License, version 2. * A copy of this license is included with this source. * * Copyright 2004-2006, Toni Thomsson */ #ifndef test_data_h #define test_data_h #include #include #include /** Test @author Toni Thomsson, toni@tonjac.org */ class MINI_EXPORT CTestData : public CzzDataService { public: /** Construction */ CTestData( void ); virtual ~CTestData(); /** Called when service data is needed @param session Session @param req CGI-parameter-list */ virtual CzzDataServiceReply* execute( void* session, CzzParameterMap* req ); int size(); }; #endif // test_data_h