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 Gennadiy Rozental 2005-2007. // 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) // See http://www.boost.org/libs/test for the library home page. // // File : $RCSfile$ // // Version : $Revision: 43798 $ // // Description : Runtime.Param library configuration // *************************************************************************** #ifndef BOOST_RT_CONFIG_HPP_062604GER #define BOOST_RT_CONFIG_HPP_062604GER // Boost #include
#ifdef BOOST_MSVC # pragma warning(disable: 4511) // copy constructor could not be generated # pragma warning(disable: 4512) // assignment operator could not be generated # pragma warning(disable: 4181) // qualifier applied to reference type; ignored # pragma warning(disable: 4675) // resolved overload was found by argument-dependent lookup #endif // Boost.Test #include
#include
#include
#include
// operator<<(boost::runtime::cstring) // STL #include
#include
//____________________________________________________________________________// #ifndef BOOST_RT_PARAM_CUSTOM_STRING # ifndef BOOST_RT_PARAM_WIDE_STRING # define BOOST_RT_PARAM_NAMESPACE runtime # else # define BOOST_RT_PARAM_NAMESPACE wide_runtime # endif #endif namespace boost { namespace BOOST_RT_PARAM_NAMESPACE { #ifndef BOOST_RT_PARAM_CUSTOM_STRING # ifndef BOOST_RT_PARAM_WIDE_STRING typedef char char_type; typedef std::string dstring; typedef unit_test::const_string cstring; typedef unit_test::literal_string literal_cstring; typedef wrap_stringstream format_stream; #ifdef BOOST_CLASSIC_IOSTREAMS typedef std::ostream out_stream; #else typedef std::basic_ostream
out_stream; #endif #if defined(__COMO__) inline void putenv_impl( cstring name, cstring value ) { using namespace std; // !! this may actually fail. What should we do? setenv( name.begin(), value.begin(), 1 ); } #else inline void putenv_impl( cstring name, cstring value ) { format_stream fs; fs << name << '=' << value; // !! this may actually fail. What should we do? // const_cast is used to satisfy putenv interface using namespace std; putenv( const_cast
( fs.str().c_str() ) ); } #endif #define BOOST_RT_PARAM_LITERAL( l ) l #define BOOST_RT_PARAM_CSTRING_LITERAL( l ) cstring( l, sizeof( l ) - 1 ) #define BOOST_RT_PARAM_GETENV getenv #define BOOST_RT_PARAM_PUTENV putenv_impl #define BOOST_RT_PARAM_EXCEPTION_INHERIT_STD //____________________________________________________________________________// # else typedef wchar_t char_type; typedef std::basic_string
dstring; typedef unit_test::basic_cstring
cstring; typedef const unit_test::basic_cstring
literal_cstring; typedef wrap_wstringstream format_stream; typedef std::wostream out_stream; inline void putenv_impl( cstring name, cstring value ) { format_stream fs; fs << name << '=' << value; // !! this may actually fail. What should we do? // const_cast is used to satisfy putenv interface using namespace std; wputenv( const_cast
( fs.str().c_str() ) ); } #define BOOST_RT_PARAM_LITERAL( l ) L ## l #define BOOST_RT_PARAM_CSTRING_LITERAL( l ) cstring( L ## l, sizeof( L ## l )/sizeof(wchar_t) - 1 ) #define BOOST_RT_PARAM_GETENV wgetenv #define BOOST_RT_PARAM_PUTENV putenv_impl # endif #endif #ifdef __GNUC__ #define BOOST_RT_PARAM_UNNEEDED_VIRTUAL virtual #else #define BOOST_RT_PARAM_UNNEEDED_VIRTUAL #endif //____________________________________________________________________________// } // namespace BOOST_RT_PARAM_NAMESPACE } // namespace boost #endif // BOOST_RT_CONFIG_HPP_062604GER
config.hpp
Page URL
File URL
Prev
2/8
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.