435efc7c9f
* Added gtalk and facebook.
20 lines
432 B
C++
20 lines
432 B
C++
/*
|
|
* Copyright 2010, Pier Luigi Fiorini. All rights reserved.
|
|
* Distributed under the terms of the GPL v2 License.
|
|
*/
|
|
#ifndef _FACEBOOK_PROTOCOL_H
|
|
#define _FACEBOOK_PROTOCOL_H
|
|
|
|
#include "JabberHandler.h"
|
|
|
|
class FacebookProtocol : public JabberHandler {
|
|
public:
|
|
FacebookProtocol();
|
|
virtual ~FacebookProtocol();
|
|
|
|
virtual void OverrideSettings();
|
|
virtual BString ComposeJID() const;
|
|
};
|
|
|
|
#endif // _FACEBOOK_PROTOCOL_H
|