00001 #ifndef INVITATIONREPLIER_H
00002 #define INVITATIONREPLIER_H
00003
00004 #include <controllerinterface.h>
00005
00006 namespace control
00007 {
00008
00009 class CONTROL_EXPORT InvitationReplier : public ControllerInterface
00010 {
00011 Q_OBJECT
00012 Q_INTERFACES(control::ControllerInterface)
00013
00014
00015 public:
00016
00017 ActionType actionType() const;
00018 DataType dataType() const;
00019 QString description() const;
00020 QString name() const;
00021
00022 private:
00023
00024 void execute();
00025 bool userIsValid() const;
00026 };
00027
00028 }
00029
00030 #endif