blob: 171df98cd94cd4340154b56327f5e91f31f2328d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// -*- C++ -*-
//=============================================================================
/**
* @file RequestInterceptor_Adapter.cpp
*
* This file an adapter class to simplify the support of
* interceptors.
*/
//=============================================================================
#include "tao/RequestInterceptor_Adapter.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO::RequestInterceptor_Adapter::~RequestInterceptor_Adapter ()
{
}
TAO_END_VERSIONED_NAMESPACE_DECL
|