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
#include <kdelibs_export.h>
00027
00028
namespace KABC {
00029
00030
class KABC_EXPORT Plugin
00031 {
00032
public:
00033 Plugin();
00034
virtual ~Plugin();
00035
00036
virtual void setType(
const QString& type );
00037
virtual QString type() const;
00038
00039 virtual
void setNameLabel( const
QString& label );
00040 virtual
QString nameLabel() const;
00041
00042 virtual
void setDescriptionLabel( const
QString& label );
00043 virtual
QString descriptionLabel() const;
00044
00045 private:
00046
QString mType;
00047
QString mNameLabel;
00048
QString mDescriptionLabel;
00049 };
00050
00051 }
00052 #endif
This file is part of the documentation for kabc Library Version 3.4.0.