summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/Traits.h
blob: f1e2cb504010159c5df47dee65adb8f82834e55c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef ICE_TRAITS_H
#define ICE_TRAITS_H

#ifdef ICE_CPP11_MAPPING

#include <type_traits>

namespace Ice
{

class ObjectPrx;
class Value;

template<class T> using IsProxy = ::std::is_base_of<::Ice::ObjectPrx, T>;
template<class T> using IsValue = ::std::is_base_of<::Ice::Value, T>;

}
#endif

#endif