mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 23:02:34 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@52999 954022d7-b5bf-4e40-9824-e11837661b57
23 lines
407 B
C++
23 lines
407 B
C++
#pragma once
|
|
|
|
#ifndef CALL_TRAITS_INCLUDE_H_
|
|
#define CALL_TRAITS_INCLUDE_H_
|
|
|
|
template <typename T>
|
|
struct NSCT_IMP
|
|
{
|
|
typedef const T& param_type;
|
|
};
|
|
|
|
template <typename T>
|
|
struct NSCallTraits
|
|
{
|
|
public:
|
|
typedef T value_type;
|
|
typedef T& reference;
|
|
typedef const T& const_reference;
|
|
|
|
typedef typename NSCT_IMP<T>::param_type param_type;
|
|
};
|
|
|
|
#endif // CALL_TRAITS_INCLUDE_H_
|