00001 /* 00002 Copyright (c) 2005-2008 by Jakob Schroeter <js@camaya.net> 00003 This file is part of the gloox library. http://camaya.net/gloox 00004 00005 This software is distributed under a license. The full license 00006 agreement can be found in the file LICENSE in this distribution. 00007 This software may not be copied, modified, sold or distributed 00008 other than expressed in the named license agreement. 00009 00010 This software is distributed without any warranty. 00011 */ 00012 00013 00014 #ifndef FLEXOFFHANDLER_H__ 00015 #define FLEXOFFHANDLER_H__ 00016 00017 #include "gloox.h" 00018 00019 namespace gloox 00020 { 00021 00025 enum FlexibleOfflineResult 00026 { 00027 FomrRemoveSuccess, 00028 FomrRequestSuccess, 00029 FomrForbidden, 00031 FomrItemNotFound, 00032 FomrUnknownError 00033 }; 00034 00042 class GLOOX_API FlexibleOfflineHandler 00043 { 00044 public: 00048 virtual ~FlexibleOfflineHandler() {} 00049 00055 virtual void handleFlexibleOfflineSupport( bool support ) = 0; 00056 00062 virtual void handleFlexibleOfflineMsgNum( int num ) = 0; 00063 00069 virtual void handleFlexibleOfflineMessageHeaders( StringMap& headers ) = 0; 00070 00075 virtual void handleFlexibleOfflineResult( FlexibleOfflineResult foResult ) = 0; 00076 00077 }; 00078 00079 } 00080 00081 #endif // FLEXOFFHANDLER_H__