diff options
Diffstat (limited to 'protocols/Skype/src/skype_subclassing.h')
-rw-r--r-- | protocols/Skype/src/skype_subclassing.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/protocols/Skype/src/skype_subclassing.h b/protocols/Skype/src/skype_subclassing.h index 97ff2952eb..a8f87a6e50 100644 --- a/protocols/Skype/src/skype_subclassing.h +++ b/protocols/Skype/src/skype_subclassing.h @@ -38,6 +38,27 @@ private: void OnChange(int prop); };
+class CContactSearch : public ContactSearch +{ +public: + typedef DRef<CContactSearch, ContactSearch> Ref; + typedef DRefs<CContactSearch, ContactSearch> Refs; + + bool isSeachFailed; + bool isSeachFinished; + + CContactSearch(unsigned int oid, SERootObject* root); + + //void set_controller(CommandContactSearch* controller) { m_controller = controller; } + + void OnChange(int prop); + void OnNewResult(const ContactRef& contact, const uint& rankValue); + + void BlockWhileSearching(); + + //CommandContactSearch* m_controller; +};
+
class CContactGroup : public ContactGroup
{
public:
|