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
// (C) Copyright John Maddock 2005-7. // Use, modification and distribution are subject to 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 BOOST_TR1_DETAIL_CONFIG_HPP_INCLUDED # define BOOST_TR1_DETAIL_CONFIG_HPP_INCLUDED #include
#if defined(__GNUC__) || (!defined(_AIX) && defined(__IBMCPP__) && (__IBMCPP__ >= 800)) #if !defined(BOOST_HAS_INCLUDE_NEXT) # define BOOST_HAS_INCLUDE_NEXT #endif // Need to find out if we're using GLIBC: #ifdef BOOST_TR1_UTILITY_INCLUDED // Oops we're in a recursive include path!! // Need to include utility, or some std lib header, // but *not* via
or
# ifndef BOOST_TR1_NO_RECURSION # define BOOST_TR1_NO_RECURSION # define BOOST_TR1_NO_CONFIG_RECURSION # endif # ifdef BOOST_HAS_INCLUDE_NEXT # include_next
# else # include BOOST_TR1_STD_HEADER(utility) # endif # ifdef BOOST_TR1_NO_CONFIG_RECURSION # undef BOOST_TR1_NO_CONFIG_RECURSION # undef BOOST_TR1_NO_RECURSION # endif #else #include
#endif #endif #if defined(__GLIBCXX__) && !defined(BOOST_TR1_PATH) # define BOOST_TR1_PATH(name) tr1/name #endif #if !defined(BOOST_TR1_PATH) # define BOOST_TR1_PATH(name) name #endif #define BOOST_TR1_HEADER(name)
// Can't use BOOST_WORKAROUND here, it leads to recursive includes: #if (defined(__BORLANDC__) && (__BORLANDC__ <= 0x600)) || (defined(_MSC_VER) && (_MSC_VER < 1310)) # define BOOST_TR1_USE_OLD_TUPLE #endif #ifdef __IBMCPP_TR1__ // turn on support for everything: # define BOOST_HAS_TR1 #endif #ifdef BOOST_HAS_TR1 // turn on support for everything: # define BOOST_HAS_TR1_ARRAY # define BOOST_HAS_TR1_COMPLEX_OVERLOADS # define BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG # define BOOST_HAS_TR1_REFERENCE_WRAPPER # define BOOST_HAS_TR1_RESULT_OF # define BOOST_HAS_TR1_MEM_FN # define BOOST_HAS_TR1_BIND # define BOOST_HAS_TR1_FUNCTION # define BOOST_HAS_TR1_HASH # define BOOST_HAS_TR1_SHARED_PTR # define BOOST_HAS_TR1_RANDOM # define BOOST_HAS_TR1_REGEX # define BOOST_HAS_TR1_TUPLE # define BOOST_HAS_TR1_TYPE_TRAITS # define BOOST_HAS_TR1_UTILITY # define BOOST_HAS_TR1_UNORDERED_MAP # define BOOST_HAS_TR1_UNORDERED_SET #endif #if defined(__MWERKS__) && (__MWERKS__ >= 0x3205) // // Very preliminary MWCW support, may not be right: // # define BOOST_HAS_TR1_SHARED_PTR # define BOOST_HAS_TR1_REFERENCE_WRAPPER # define BOOST_HAS_TR1_FUNCTION # define BOOST_HAS_TR1_TUPLE # define BOOST_HAS_TR1_RESULT_OF #endif #ifdef BOOST_HAS_GCC_TR1 // turn on support for everything in gcc 4.0.x: # define BOOST_HAS_TR1_ARRAY //# define BOOST_HAS_TR1_COMPLEX_OVERLOADS //# define BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG # define BOOST_HAS_TR1_REFERENCE_WRAPPER # define BOOST_HAS_TR1_RESULT_OF # define BOOST_HAS_TR1_MEM_FN # define BOOST_HAS_TR1_BIND # define BOOST_HAS_TR1_FUNCTION # define BOOST_HAS_TR1_HASH # define BOOST_HAS_TR1_SHARED_PTR //# define BOOST_HAS_TR1_RANDOM //# define BOOST_HAS_TR1_REGEX # define BOOST_HAS_TR1_TUPLE # define BOOST_HAS_TR1_TYPE_TRAITS # define BOOST_HAS_TR1_UTILITY # define BOOST_HAS_TR1_UNORDERED_MAP # define BOOST_HAS_TR1_UNORDERED_SET #endif #if defined(_MSC_VER) && (_MSC_VER >= 1500) \ && defined(_MSC_FULL_VER) && \ !defined(__SGI_STL_PORT) && \ !defined(_STLPORT_VERSION) // // MSVC-9.0 defines a not-quite TR1 conforming hash // function object in
, so we must define // this here, in addition the feature pack for VC9 // provides a more or less full TR1 implementation: // #if defined(_HAS_TR1) && (_HAS_TR1 + 0) # define BOOST_HAS_TR1_ARRAY # define BOOST_HAS_TR1_REFERENCE_WRAPPER # define BOOST_HAS_TR1_RESULT_OF # define BOOST_HAS_TR1_MEM_FN # define BOOST_HAS_TR1_BIND # define BOOST_HAS_TR1_FUNCTION # define BOOST_HAS_TR1_HASH # define BOOST_HAS_TR1_SHARED_PTR # define BOOST_HAS_TR1_RANDOM # define BOOST_HAS_TR1_REGEX # define BOOST_HAS_TR1_TUPLE # define BOOST_HAS_TR1_TYPE_TRAITS # define BOOST_HAS_TR1_UTILITY # define BOOST_HAS_TR1_UNORDERED_MAP # define BOOST_HAS_TR1_UNORDERED_SET #else # define BOOST_HAS_TR1_HASH #endif #endif #include
#endif
config.hpp
Page URL
File URL
Prev 1/4
Next
Download
( 4 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.