DriveHQ Start Menu
Cloud Drive Mapping
Folder Sync
Cloud Backup
True Drop Box
FTP/SFTP Hosting
Group Account
DriveHQ Start Menu
Online File Server
My Storage
|
Manage Shares
|
Publishes
|
Drop Boxes
|
Group Account
WebDAV Drive Mapping
Cloud Drive Home
|
WebDAV Guide
|
Drive Mapping Tool
|
Drive Mapping URL
Complete Data Backup
Backup Guide
|
Online Backup Tool
|
Cloud-to-Cloud Backup
FTP, Email & Web Service
FTP Home
|
FTP Hosting FAQ
|
Email Hosting
|
EmailManager
|
Web Hosting
Help & Resources
About
|
Enterprise Service
|
Partnership
|
Comparisons
|
Support
Quick Links
Security and Privacy
Download Software
Service Manual
Use Cases
Group Account
Online Help
Blog
Contact
Cloud Surveillance
Sign Up
Login
Features
Business Features
Online File Server
FTP Hosting
Cloud Drive Mapping
Cloud File Backup
Email Backup & Hosting
Cloud File Sharing
Folder Synchronization
Group Management
True Drop Box
Full-text Search
AD Integration/SSO
Mobile Access
IP Camera & DVR Solution
More...
Personal Features
Personal Cloud Drive
Backup All Devices
Mobile APPs
Personal Web Hosting
Sub-Account (for Kids)
Home/PC/Kids Monitoring
More...
Software
DriveHQ Drive Mapping Tool
DriveHQ FileManager
DriveHQ Online Backup
DriveHQ Mobile Apps
Pricing
Business Plans & Pricing
Personal Plans & Pricing
Price Comparison with Others
Feature Comparison with Others
Install Mobile App
Sign up
Creating account...
Invalid character in username! Only 0-9, a-z, A-Z, _, -, . allowed.
Username is required!
Invalid email address!
E-mail is required!
Password is required!
Password is invalid!
Password and confirmation do not match.
Confirm password is required!
I accept
Membership Agreement
Please read the Membership Agreement and check "I accept"!
Free Quick Sign-up
Sign-up Page
Log in
Signing in...
Username or e-mail address is required!
Password is required!
Keep me logged in
Quick Login
Forgot Password
Up
Upload
Download
Share
Publish
New Folder
New File
Copy
Cut
Delete
Paste
Rate
Upgrade
Rotate
Effect
Edit
Slide
History
// Copyright David Abrahams 2002. // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef INDIRECT_TRAITS_DWA2002131_HPP # define INDIRECT_TRAITS_DWA2002131_HPP # include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION # include
# endif namespace boost { namespace detail { namespace indirect_traits { # ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION template
struct is_reference_to_const : mpl::false_ { }; template
struct is_reference_to_const
: mpl::true_ { }; # if defined(BOOST_MSVC) && _MSC_FULL_VER <= 13102140 // vc7.01 alpha workaround template
struct is_reference_to_const
: mpl::true_ { }; # endif template
struct is_reference_to_function : mpl::false_ { }; template
struct is_reference_to_function
: is_function
{ }; template
struct is_pointer_to_function : mpl::false_ { }; // There's no such thing as a pointer-to-cv-function, so we don't need // specializations for those template
struct is_pointer_to_function
: is_function
{ }; template
struct is_reference_to_member_function_pointer_impl : mpl::false_ { }; template
struct is_reference_to_member_function_pointer_impl
: is_member_function_pointer
::type> { }; template
struct is_reference_to_member_function_pointer : is_reference_to_member_function_pointer_impl
{ BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_member_function_pointer,(T)) }; template
struct is_reference_to_function_pointer_aux : mpl::and_< is_reference
, is_pointer_to_function< typename remove_cv< typename remove_reference
::type >::type > > { // There's no such thing as a pointer-to-cv-function, so we don't need specializations for those }; template
struct is_reference_to_function_pointer : mpl::if_< is_reference_to_function
, mpl::false_ , is_reference_to_function_pointer_aux
>::type { }; template
struct is_reference_to_non_const : mpl::and_< is_reference
, mpl::not_< is_reference_to_const
> > { }; template
struct is_reference_to_volatile : mpl::false_ { }; template
struct is_reference_to_volatile
: mpl::true_ { }; # if defined(BOOST_MSVC) && _MSC_FULL_VER <= 13102140 // vc7.01 alpha workaround template
struct is_reference_to_volatile
: mpl::true_ { }; # endif template
struct is_reference_to_pointer : mpl::false_ { }; template
struct is_reference_to_pointer
: mpl::true_ { }; template
struct is_reference_to_pointer
: mpl::true_ { }; template
struct is_reference_to_pointer
: mpl::true_ { }; template
struct is_reference_to_pointer
: mpl::true_ { }; template
struct is_reference_to_class : mpl::and_< is_reference
, is_class< typename remove_cv< typename remove_reference
::type >::type > > { BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_class,(T)) }; template
struct is_pointer_to_class : mpl::and_< is_pointer
, is_class< typename remove_cv< typename remove_pointer
::type >::type > > { BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_pointer_to_class,(T)) }; # else using namespace boost::detail::is_function_ref_tester_; typedef char (&inner_yes_type)[3]; typedef char (&inner_no_type)[2]; typedef char (&outer_no_type)[1]; template
struct is_const_help { typedef typename mpl::if_< is_const
, inner_yes_type , inner_no_type >::type type; }; template
struct is_volatile_help { typedef typename mpl::if_< is_volatile
, inner_yes_type , inner_no_type >::type type; }; template
struct is_pointer_help { typedef typename mpl::if_< is_pointer
, inner_yes_type , inner_no_type >::type type; }; template
struct is_class_help { typedef typename mpl::if_< is_class
, inner_yes_type , inner_no_type >::type type; }; template
struct is_reference_to_function_aux { static T t; BOOST_STATIC_CONSTANT( bool, value = sizeof(detail::is_function_ref_tester(t,0)) == sizeof(::boost::type_traits::yes_type)); typedef mpl::bool_
type; }; template
struct is_reference_to_function : mpl::if_
, is_reference_to_function_aux
, mpl::bool_
>::type { }; template
struct is_pointer_to_function_aux { static T t; BOOST_STATIC_CONSTANT( bool, value = sizeof(::boost::type_traits::is_function_ptr_tester(t)) == sizeof(::boost::type_traits::yes_type)); typedef mpl::bool_
type; }; template
struct is_pointer_to_function : mpl::if_
, is_pointer_to_function_aux
, mpl::bool_
>::type { BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_pointer_to_function,(T)) }; struct false_helper1 { template
struct apply : mpl::false_ { }; }; template
typename is_const_help
::type reference_to_const_helper(V&); outer_no_type reference_to_const_helper(...); struct true_helper1 { template
struct apply { static T t; BOOST_STATIC_CONSTANT( bool, value = sizeof(reference_to_const_helper(t)) == sizeof(inner_yes_type)); typedef mpl::bool_
type; }; }; template
struct is_reference_to_const_helper1 : true_helper1 { }; template <> struct is_reference_to_const_helper1
: false_helper1 { }; template
struct is_reference_to_const : is_reference_to_const_helper1
::value>::template apply
{ }; template
struct is_reference_to_non_const_helper1 { template
struct apply { static T t; BOOST_STATIC_CONSTANT( bool, value = sizeof(reference_to_const_helper(t)) == sizeof(inner_no_type)); typedef mpl::bool_
type; }; }; template <> struct is_reference_to_non_const_helper1
: false_helper1 { }; template
struct is_reference_to_non_const : is_reference_to_non_const_helper1
::value>::template apply
{ BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_non_const,(T)) }; template
typename is_volatile_help
::type reference_to_volatile_helper(V&); outer_no_type reference_to_volatile_helper(...); template
struct is_reference_to_volatile_helper1 { template
struct apply { static T t; BOOST_STATIC_CONSTANT( bool, value = sizeof(reference_to_volatile_helper(t)) == sizeof(inner_yes_type)); typedef mpl::bool_
type; }; }; template <> struct is_reference_to_volatile_helper1
: false_helper1 { }; template
struct is_reference_to_volatile : is_reference_to_volatile_helper1
::value>::template apply
{ }; template
typename is_pointer_help
::type reference_to_pointer_helper(V&); outer_no_type reference_to_pointer_helper(...); template
struct reference_to_pointer_impl { static T t; BOOST_STATIC_CONSTANT( bool, value = (sizeof((reference_to_pointer_helper)(t)) == sizeof(inner_yes_type)) ); typedef mpl::bool_
type; }; template
struct is_reference_to_pointer : mpl::eval_if
, reference_to_pointer_impl
, mpl::false_>::type { BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_pointer,(T)) }; template
struct is_reference_to_function_pointer : mpl::eval_if
, is_pointer_to_function_aux
, mpl::false_>::type { BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_function_pointer,(T)) }; template
struct is_member_function_pointer_help : mpl::if_
, inner_yes_type, inner_no_type> {}; template
typename is_member_function_pointer_help
::type member_function_pointer_helper(V&); outer_no_type member_function_pointer_helper(...); template
struct is_pointer_to_member_function_aux { static T t; BOOST_STATIC_CONSTANT( bool, value = sizeof((member_function_pointer_helper)(t)) == sizeof(inner_yes_type)); typedef mpl::bool_
type; }; template
struct is_reference_to_member_function_pointer : mpl::if_< is_reference
, is_pointer_to_member_function_aux
, mpl::bool_
>::type { BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_member_function_pointer,(T)) }; template
typename is_class_help
::type reference_to_class_helper(V const volatile&); outer_no_type reference_to_class_helper(...); template
struct is_reference_to_class { static T t; BOOST_STATIC_CONSTANT( bool, value = (is_reference
::value & (sizeof(reference_to_class_helper(t)) == sizeof(inner_yes_type))) ); typedef mpl::bool_
type; BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_class,(T)) }; template
typename is_class_help
::type pointer_to_class_helper(V const volatile*); outer_no_type pointer_to_class_helper(...); template
struct is_pointer_to_class { static T t; BOOST_STATIC_CONSTANT( bool, value = (is_pointer
::value && sizeof(pointer_to_class_helper(t)) == sizeof(inner_yes_type)) ); typedef mpl::bool_
type; }; # endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION } using namespace indirect_traits; }} // namespace boost::python::detail #endif // INDIRECT_TRAITS_DWA2002131_HPP
indirect_traits.hpp
Page URL
File URL
Prev
19/61
Next
Download
( 11 KB )
Note: The DriveHQ service banners will NOT be displayed if the file owner is a paid member.
Comments
Total ratings:
0
Average rating:
Not Rated
Would you like to comment?
Join DriveHQ
for a free account, or
Logon
if you are already a member.