blob: 414be6735923a3c7de6e881747fb48241f1055c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#ifndef ICE_VALUE_F_H
#define ICE_VALUE_F_H
#ifdef ICE_CPP11_MAPPING
#include <Ice/Config.h>
namespace Ice
{
class Value;
/// \cond INTERNAL
using ValuePtr = ::std::shared_ptr<Value>;
/// \endcond
}
#endif
#endif
|