Ice 3.8
C++ API Reference
Loading...
Searching...
No Matches
PropertyDict.h
1// Copyright (c) ZeroC, Inc.
2
3// slice2cpp version 3.8.0-alpha.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 != 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 /// A simple collection of properties, represented as a dictionary of key/value pairs. Both key and value are
26 /// strings.
27 /// @see PropertiesAdmin#getPropertiesForPrefix
28 using PropertyDict = 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<> > PropertyDict
A simple collection of properties, represented as a dictionary of key/value pairs.
The Ice RPC framework.
Definition SampleEvent.h:59