/********************************************************************* // created: 2007/04/12 - 16:30 // // author: Elie Al Alam & Gerald Dherbomez // // version: $Id: DbtPlyGstManager.cpp 1203 2012-08-02 11:58:15Z morasjul $ // // purpose: Dbite Player Gst Manager implementation *********************************************************************/ #include "DbtPlyGstManager.h" #include //#include "kernel/ComponentManager.h" namespace pacpus { // Construction de la fabrique de composant DbtPlyTrigger static ComponentFactory sFactory("DbtPlyGstManager"); DbtPlyGstManager::DbtPlyGstManager(QString name) : DbtPlyFileManager (name) { } DbtPlyGstManager::~DbtPlyGstManager() { } void DbtPlyGstManager::processData(road_time_t /*t*/, road_timerange_t /*tr*/ , void * buf) { // no data available if (buf == NULL) return; val = (trame_gst*)(buf); } ComponentBase::COMPONENT_CONFIGURATION DbtPlyGstManager::configureComponent(XmlComponentConfig config) { DbtPlyFileManager::configureComponent(config); return ComponentBase::CONFIGURED_OK; } void DbtPlyGstManager::startActivity() { DbtPlyFileManager::startActivity(); // user interface if (mShowGui) displayUI(); } void DbtPlyGstManager::stopActivity() { DbtPlyFileManager::stopActivity(); } void DbtPlyGstManager::displayUI() { // todo printf (" No graphical interface implemented\n"); } } // namespace pacpus