Tinman  1.0
tinmanI.h
Go to the documentation of this file.
1 #ifndef __tinmanI_h__
2 #define __tinmanI_h__
3 #include <memory>
4 
5 #include <tinman.h>
6 
7 class Session;
8 
9 namespace Tinman {
10 
11  class PeerI : virtual public Peer {
12  std::shared_ptr<Session> session_;
13  public:
14  PeerI(std::shared_ptr<Session> session);
15  virtual void notify(const ::Tinman::Snapshot&,
16  const Ice::Current&);
17  };
18 }
19 #endif
Definition: instrumentatedCarI.h:9
std::shared_ptr< Session > session_
Definition: tinmanI.h:12
PeerI(std::shared_ptr< Session > session)
Definition: tinmanI.cpp:4
Definition: session.h:30
virtual void notify(const ::Tinman::Snapshot &, const Ice::Current &)
Definition: tinmanI.cpp:9
Definition: tinmanI.h:11