gloox  0.9.9.12
component.h
1 /*
2  Copyright (c) 2005-2008 by Jakob Schroeter <js@camaya.net>
3  This file is part of the gloox library. http://camaya.net/gloox
4 
5  This software is distributed under a license. The full license
6  agreement can be found in the file LICENSE in this distribution.
7  This software may not be copied, modified, sold or distributed
8  other than expressed in the named license agreement.
9 
10  This software is distributed without any warranty.
11 */
12 
13 
14 
15 #ifndef COMPONENT_H__
16 #define COMPONENT_H__
17 
18 #include "clientbase.h"
19 
20 #include <string>
21 
22 namespace gloox
23 {
24 
33  class GLOOX_API Component : public ClientBase
34  {
35  public:
46  Component( const std::string& ns, const std::string& server,
47  const std::string& component, const std::string& password, int port = 5347 );
48 
52  virtual ~Component() {}
53 
57  void disconnect() { ClientBase::disconnect( ConnUserDisconnected ); }
58 
59  protected:
60  virtual void handleStartNode();
61  virtual bool handleNormalNode( Stanza *stanza );
62  virtual bool checkStreamVersion( const std::string& /*version*/ ) { return true; }
63 
64  private:
65  // reimplemented from ClientBase
66  virtual void rosterFilled() {}
67 
68  };
69 
70 }
71 
72 #endif // COMPONENT_H__