DriveHQ Start Menu
Cloud Drive Mapping
Folder Sync
True Drop Box
FTP/SFTP Hosting
Group Account
Team Anywhere
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
|
Cloud-to-Cloud Backup
|
DVR/Camera Backup
FTP, Email & Web Service
FTP/SFTP Hosting
|
Email Hosting
|
Web Hosting
|
Webcam Hosting
Other Products & Services
Team Anywhere
|
Connect to Remote PC
|
Cloud Surveillance
|
Virtual CCTV NVR
Quick Links
Security and Privacy
Customer Support
Service Manual
Use Cases
Group Account
Online Help
Support Forum
Contact Us
About DriveHQ
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
Personal Features
Personal Cloud Drive
Backup All Devices
Mobile APPs
Personal Web Hosting
Sub-Account (for Kids)
Home/PC/Kids Monitoring
Other Features
Team Anywhere (Remote Desktop Service)
CameraFTP Cloud Surveillance
Software
DriveHQ Drive Mapping Tool
DriveHQ FileManager
DriveHQ Online Backup
DriveHQ Team Anywhere for Windows (Beta)
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. // 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) /* * The gcc include path logic is derived from STLport: * * Copyright (c) 1994 * Hewlett-Packard Company * * Copyright (c) 1996-1999 * Silicon Graphics Computer Systems, Inc. * * Copyright (c) 1997 * Moscow Center for SPARC Technology * * Copyright (c) 1999-2003 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. * */ #ifndef BOOST_TR1_DETAIL_CONFIG_ALL_HPP_INCLUDED # define BOOST_TR1_DETAIL_CONFIG_ALL_HPP_INCLUDED // // IMPORTANT: we must figure out the basics, such as how to // forward to the real std lib headers *without* including // boost/config.hpp or any of the std lib headers. A classic // chicken and the egg problem.... // // Including
at least lets us detect STLport: // #include
# if (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) && !defined(__BORLANDC__) # ifdef __SUNPRO_CC // can't use <../stlport/name> since some compilers put stlport in a different directory: # define BOOST_TR1_STD_HEADER(name) <../stlport4/name> # else # define BOOST_TR1_STD_HEADER(name) <../stlport/name> # endif # elif defined(__HP_aCC) // HP aCC include path: # define BOOST_TR1_STD_HEADER(name) <../include_std/name> # elif defined(__DECCXX) # define BOOST_TR1_STD_HEADER(name) <../cxx/name> # elif defined(__BORLANDC__) && __BORLANDC__ >= 0x570 # define BOOST_TR1_STD_HEADER(name) <../include/dinkumware/name> # elif defined(__GNUC__) && __GNUC__ >= 3 # if defined(BOOST_TR1_GCC_INCLUDE_PATH) # define BOOST_TR1_STD_HEADER(name) <../BOOST_TR1_GCC_INCLUDE_PATH/name> # ifndef BOOST_TR1_DISABLE_INCLUDE_NEXT # define BOOST_TR1_DISABLE_INCLUDE_NEXT # endif # elif ( (__GNUC__ == 3 ) && ((__GNUC_MINOR__ == 0) || ((__GNUC_MINOR__ < 3) && defined(__APPLE_CC__)))) # define BOOST_TR1_STD_HEADER(name) <../g++-v3/name> # else # if ( ((__GNUC__ == 4 ) || (__GNUC_MINOR__ >= 3)) && defined(__APPLE_CC__)) # define BOOST_TR1_STD_HEADER(name) <../c++/name> /* * Before version 3.4.0 the 0 patch level was not part of the include path: */ # elif defined (__GNUC_PATCHLEVEL__) && ((__GNUC_PATCHLEVEL__ > 0) || \ (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \ (__GNUC__ > 3)) # define BOOST_TR1_STD_HEADER(name) <../__GNUC__.__GNUC_MINOR__.__GNUC_PATCHLEVEL__/name> # else # define BOOST_TR1_STD_HEADER(name) <../__GNUC__.__GNUC_MINOR__/name> # endif # endif # else # define BOOST_TR1_STD_HEADER(name) <../include/name> # endif #if defined(__GNUC__) && !defined(BOOST_HAS_INCLUDE_NEXT) # define BOOST_HAS_INCLUDE_NEXT #endif // // We may be in the middle of parsing boost/config.hpp // when this header is included, so don't rely on config // stuff in the rest of this header... // // Find our actual std lib: // #if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT) // // We don't take this branch if BOOST_TR1_DISABLE_INCLUDE_NEXT // is defined as we may be installed in // /usr/include, in which case #include_next won't work as our // include path will occur AFTER the regular std lib one :-( // # ifndef BOOST_TR1_NO_RECURSION # define BOOST_TR1_NO_RECURSION # define BOOST_TR1_NO_CONFIG_ALL_RECURSION # endif # include_next
# if (__GNUC__ < 3) # include_next
# include_next
# endif # ifdef BOOST_TR1_NO_CONFIG_ALL_RECURSION # undef BOOST_TR1_NO_CONFIG_ALL_RECURSION # undef BOOST_TR1_NO_RECURSION # endif #else # include BOOST_TR1_STD_HEADER(utility) #endif #include
#endif
config_all.hpp
Page URL
File URL
Prev
2/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.