RTI Routing Service
Version 7.1.0
Session.hpp
1
/*
2
* (c) Copyright, Real-Time Innovations, 2017.
3
* All rights reserved.
4
*
5
* No duplications, whole or partial, manual or electronic, may be made
6
* without express written permission. Any such copies, or
7
* revisions thereof, must display this notice unaltered.
8
* This code contains trade secrets of Real-Time Innovations, Inc.
9
*/
10
#ifndef RTI_ROUTING_ADAPTER_SESSION_HPP_
11
#define RTI_ROUTING_ADAPTER_SESSION_HPP_
12
13
#include <rti/routing/UpdatableEntity.hpp>
14
15
namespace
rti {
namespace
routing {
namespace
adapter {
16
28
class
Session
:
public
UpdatableEntity
{
29
30
public
:
31
35
virtual
~Session
()
36
{
37
}
38
};
39
40
}}}
41
42
#endif
// RTI_ROUTING_ADAPTER_SESSION_HPP_
rti::routing::UpdatableEntity
Defines a common interface for all the pluggable entities that can be updated at runtime.
Definition:
UpdatableEntity.hpp:34
rti::routing::adapter::Session
Definition:
Session.hpp:28
rti::routing::adapter::Session::~Session
virtual ~Session()
Virtual destructor.
Definition:
Session.hpp:35