Ice 3.8
C++ API Reference
Loading...
Searching...
No Matches
PropertyDict.h
1// Copyright (c) ZeroC, Inc.
2
3// slice2cpp version 3.8.0
4// <auto-generated>Generated from Slice file 'PropertyDict.ice'.</auto-generated>
5// clang-format off
6
7#ifndef Ice_PropertyDict_h_
8#define Ice_PropertyDict_h_
9
11#include <Ice/Config.h>
12#include <map>
13#include <string>
14
15#ifndef ICE_DISABLE_VERSION
16# if ICE_INT_VERSION / 100 != 308
17# error Ice version mismatch!
18# endif
19# if ICE_INT_VERSION % 100 >= 50
20# error Beta header file detected
21# endif
22# if ICE_INT_VERSION % 100 < 0
23# error Ice patch level mismatch!
24# endif
25#endif
26
27// NOLINTBEGIN(modernize-concat-nested-namespaces)
28
29namespace Ice
30{
31 /// A simple collection of properties, represented as a dictionary of key/value pairs. Both key and value are
32 /// strings.
33 using PropertyDict = std::map<std::string, std::string, std::less<>>;
34}
35
36// NOLINTEND(modernize-concat-nested-namespaces)
37
39#endif
std::map< std::string, std::string, std::less<> > PropertyDict
A simple collection of properties, represented as a dictionary of key/value pairs.
The Ice RPC framework.
Definition SampleEvent.h:66