plugin.cpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include "plugin.h"
00022
00023 using namespace KABC;
00024
00025 Plugin::Plugin()
00026 {
00027 }
00028
00029 Plugin::~Plugin()
00030 {
00031 }
00032
00033 void Plugin::setType( const QString& type )
00034 {
00035 mType = type;
00036 }
00037
00038 QString Plugin::type() const
00039 {
00040 return mType;
00041 }
00042
00043 void Plugin::setNameLabel( const QString& label )
00044 {
00045 mNameLabel = label;
00046 }
00047
00048 QString Plugin::nameLabel() const
00049 {
00050 return mNameLabel;
00051 }
00052
00053 void Plugin::setDescriptionLabel( const QString& label )
00054 {
00055 mDescriptionLabel = label;
00056 }
00057
00058 QString Plugin::descriptionLabel() const
00059 {
00060 return mDescriptionLabel;
00061 }
This file is part of the documentation for kdelibs Version 3.1.0.