Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tao / BiDir_GIOP / BiDir_Service_Context_Handler.h
blob1963b179524e2ab404892c5380f2d008bb53225f
1 // -*- C++ -*-
3 // ===================================================================
4 /**
5 * @file BiDir_Service_Context_Handler.h
7 * @author Johnny Willemsen <jwillemsen@remedy.nl>
8 */
9 // ===================================================================
11 #ifndef TAO_BIDIR_SERVICE_CONTEXT_HANDLER_H
12 #define TAO_BIDIR_SERVICE_CONTEXT_HANDLER_H
13 #include /**/ "ace/pre.h"
14 #include "tao/BiDir_GIOP/bidirgiop_export.h"
16 #if !defined (ACE_LACKS_PRAGMA_ONCE)
17 # pragma once
18 #endif /* ACE_LACKS_PRAGMA_ONCE */
20 #include "tao/Service_Context_Handler.h"
22 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
24 class TAO_Stub;
26 class TAO_BiDIR_Service_Context_Handler :
27 public TAO_Service_Context_Handler
29 public:
30 int process_service_context (TAO_Transport& transport,
31 const IOP::ServiceContext& context,
32 TAO_ServerRequest *request) override;
33 int generate_service_context (
34 TAO_Stub* stub,
35 TAO_Transport &transport,
36 TAO_Operation_Details &opdetails,
37 TAO_Target_Specification &spec,
38 TAO_OutputCDR &msg) override;
41 TAO_END_VERSIONED_NAMESPACE_DECL
43 #include /**/ "ace/post.h"
44 #endif /* TAO_BIDIR_SERVICE_CONTEXT_HANDLER_H */