plugin.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
#ifndef KABC_PLUGIN_H
00022
#define KABC_PLUGIN_H
00023
00024
#include <qstring.h>
00025
00026
namespace KABC {
00027
00028
class Plugin
00029 {
00030
public:
00031 Plugin();
00032
virtual ~Plugin();
00033
00034
virtual void setType(
const QString& type );
00035
virtual QString type() const;
00036
00037 virtual
void setNameLabel( const
QString& label );
00038 virtual
QString nameLabel() const;
00039
00040 virtual
void setDescriptionLabel( const
QString& label );
00041 virtual
QString descriptionLabel() const;
00042
00043 private:
00044
QString mType;
00045
QString mNameLabel;
00046
QString mDescriptionLabel;
00047 };
00048
00049 }
00050 #endif
This file is part of the documentation for kabc Library Version 3.2.3.