/* 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 */ // Implementation of class CTestRender #include "test_render.h" #include "test_data.h" #include "test_table_data.h" // Construction CTestRender::CTestRender( void* session, CzzParameterMap* cgi ) : CzzOutputRender( "Test.html" , session, cgi ) { this->addListSvc( "table", new CTestTableData( ) ); this->addFieldSvc( new CTestData( ) ); } // Destruction CTestRender::~CTestRender() { }