Ice 3.8
C++ API Reference
Loading...
Searching...
No Matches
Context.h
1// Copyright (c) ZeroC, Inc.
2
3// slice2cpp version 3.8.0-alpha.0
4// <auto-generated>Generated from Slice file 'Context.ice'.</auto-generated>
5// clang-format off
6
7#ifndef Ice_Context_h_
8#define Ice_Context_h_
9
11#include <Ice/Config.h>
12#include <map>
13#include <string>
14
15#ifndef ICE_DISABLE_VERSION
16# if ICE_INT_VERSION != 30850
17# error Ice version mismatch: an exact match is required for beta generated code
18# endif
19#endif
20
21// NOLINTBEGIN(modernize-concat-nested-namespaces)
22
23namespace Ice
24{
25 /// Represents additional information carried by an Ice request. This information is filled in by the application
26 /// and transmitted by Ice as-is, from the client to the server.
27 /// @remarks The Ice protocol provides request contexts but does not provide response contexts.
28 using Context = std::map<std::string, std::string, std::less<>>;
29}
30
31// NOLINTEND(modernize-concat-nested-namespaces)
32
34#endif
std::map< std::string, std::string, std::less<> > Context
Represents additional information carried by an Ice request.
Definition Context.h:28
The Ice RPC framework.
Definition SampleEvent.h:59