00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef DELCONTACTANSWER_H
00020 #define DELCONTACTANSWER_H
00021
00022 #include <Message/answer.h>
00023
00029 class DelContactAnswer : public Answer
00030 {
00031 public:
00037 DelContactAnswer(const bool bValue, const std::string& sDescription, int iContactID);
00038
00042 DelContactAnswer(const bool bValue = false);
00043
00045 ~DelContactAnswer();
00046
00049 void setContactID(const int contactID) { m_iContactID = contactID; }
00050
00052 int getContactID() const { return m_iContactID; }
00053
00055 void processMessage() const;
00056
00060 std::string toString() const;
00061
00064 DelContactAnswer& copy() const;
00065
00066 private:
00068 int m_iContactID;
00069 };
00070
00071 #endif