00001 /*************************************************************************** 00002 rds_type_decoder.h - description 00003 ------------------- 00004 begin : Feb 2009 00005 copyright : (C) 2009 Ernst Martin Witte 00006 email : emw-kradio@nocabal.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef KRADIO_V4LRADIO_RDS_TYPE_DECODER_H 00019 #define KRADIO_V4LRADIO_RDS_TYPE_DECODER_H 00020 00021 #ifdef HAVE_CONFIG_H 00022 #include <config.h> 00023 #endif 00024 00025 #include <kdemacros.h> 00026 00027 #include "rds_group.h" 00028 00029 class KDE_EXPORT RDSTypeDecoder 00030 { 00031 public: 00032 RDSTypeDecoder(); 00033 virtual ~RDSTypeDecoder(); 00034 virtual void addGroup(const RDSGroup &g) = 0; 00035 virtual bool isComplete() const = 0; 00036 }; 00037 00038 #endif 00039