/usr/include/ptclib/xmpp_muc.h is in libpt-dev 2.10.11~dfsg-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | /*
* xmpp_muc.h
*
* Extensible Messaging and Presence Protocol (XMPP)
* JEP-0045 Multi-User Chat
*
* Portable Windows Library
*
* Copyright (c) 2004 Reitek S.p.A.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Post Increment
*
* Contributor(s): ______________________________________.
*
* $Revision: 25387 $
* $Author: rjongbloed $
* $Date: 2011-03-22 22:51:09 -0500 (Tue, 22 Mar 2011) $
*/
#ifndef PTLIB_XMPP_MUC_H
#define PTLIB_XMPP_MUC_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <ptclib/xmpp_c2s.h>
#if P_EXPAT
///////////////////////////////////////////////////////
namespace XMPP
{
namespace MUC
{
extern const PCaselessString & NamespaceTag();
class User : public PObject
{
PCLASSINFO(User, PObject);
public:
User();
~User();
static const PCaselessString & NamespaceTag();
enum Role {
None,
Moderator,
Participant,
Visitor,
Unknown = 999
};
enum Affiliation {
None_a,
Owner,
Admin,
Member,
Outcast,
Unknown_a = 999
};
PString m_Nick;
Role m_Role;
Affiliation m_Affiliation;
Comparison Compare(const PObject & obj) const;
};
PSORTED_LIST(Users, User);
class Room : public PObject
{
PCLASSINFO(Room, PObject);
PDECLARE_SMART_NOTIFIEE;
public:
Room(C2S::StreamHandler * handler, ///< The C2S stream handler
const JID& jid, ///< The room's jid
const PString& nick); ///< Our user in the room
const User& GetUser() const { return m_User; }
const Users& GetOtherUsers() const { return m_OtherUsers; }
virtual PBoolean Enter();
virtual PBoolean Leave();
virtual PBoolean SendMessage(const PString& msg);
virtual PBoolean SendMessage(Message& msg);
// Event methods
virtual void OnMessage(Message& msg);
virtual void OnRoomJoined();
virtual void OnRoomLeft();
virtual void OnUserAdded(User& user);
virtual void OnUserRemoved(User& user);
virtual void OnUserChanged(User& user);
protected:
PDECLARE_SMART_NOTIFIER(C2S::StreamHandler, Room, OnSessionReleased);
PDECLARE_SMART_NOTIFIER(Message, Room, OnMessage);
PDECLARE_SMART_NOTIFIER(Presence, Room, OnPresence);
C2S::StreamHandler * m_Handler;
BareJID m_RoomJID;
User m_User;
Users m_OtherUsers;
PNotifierList m_MessageHandlers;
PNotifierList m_RoomJoinedHandlers;
PNotifierList m_RoomLeftHandlers;
PNotifierList m_UserAddedHandlers;
PNotifierList m_UserRemovedHandlers;
PNotifierList m_UserChangedHandlers;
};
} // namespace MUC
} // namespace XMPP
#endif // P_EXPAT
#endif // PTLIB_XMPP_MUC_H
// End of File ///////////////////////////////////////////////////////////////
|