LanguageUpdateNotifier.h
Go to the documentation of this file.00001 #ifndef LANGUAGE_UPDATE_PROXY_H
00002 #define LANGUAGE_UPDATE_PROXY_H
00003
00004 #include <qobject.h>
00005 #include <qstring.h>
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 class LanguageUpdateNotifier : public QObject {
00017
00018 Q_OBJECT
00019
00020 public:
00021
00022 void addLanguage( const QString& language );
00023 void removeLanguage( const QString& language );
00024
00025 signals:
00026
00027 void languageAdded( const QString& language );
00028 void languageRemoved( const QString& language );
00029
00030 private:
00031
00032 };
00033
00034 #endif