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 2002-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: 41369 $ // // Description : wraps strstream and stringstream (depends with one is present) // to provide the unified interface // *************************************************************************** #ifndef BOOST_WRAP_STRINGSTREAM_HPP_071894GER #define BOOST_WRAP_STRINGSTREAM_HPP_071894GER // Boost.Test #include
// STL #ifdef BOOST_NO_STRINGSTREAM #include
// for std::ostrstream #else #include
// for std::ostringstream #endif // BOOST_NO_STRINGSTREAM #include
//____________________________________________________________________________// namespace boost { // ************************************************************************** // // ************** basic_wrap_stringstream ************** // // ************************************************************************** // template
class basic_wrap_stringstream { public: #if defined(BOOST_CLASSIC_IOSTREAMS) typedef std::ostringstream wrapped_stream; #elif defined(BOOST_NO_STRINGSTREAM) typedef std::basic_ostrstream
wrapped_stream; #else typedef std::basic_ostringstream
wrapped_stream; #endif // BOOST_NO_STRINGSTREAM // Access methods basic_wrap_stringstream& ref(); wrapped_stream& stream(); std::basic_string
const& str(); private: // Data members wrapped_stream m_stream; std::basic_string
m_str; }; //____________________________________________________________________________// template
inline basic_wrap_stringstream
& operator<<( basic_wrap_stringstream
& targ, T const& t ) { targ.stream() << t; return targ; } //____________________________________________________________________________// template
inline typename basic_wrap_stringstream
::wrapped_stream& basic_wrap_stringstream
::stream() { return m_stream; } //____________________________________________________________________________// template
inline basic_wrap_stringstream
& basic_wrap_stringstream
::ref() { return *this; } //____________________________________________________________________________// template
inline std::basic_string
const& basic_wrap_stringstream
::str() { #ifdef BOOST_NO_STRINGSTREAM m_str.assign( m_stream.str(), m_stream.pcount() ); m_stream.freeze( false ); #else m_str = m_stream.str(); #endif return m_str; } //____________________________________________________________________________// template
inline basic_wrap_stringstream
& operator<<( basic_wrap_stringstream
& targ, basic_wrap_stringstream
& src ) { targ << src.str(); return targ; } //____________________________________________________________________________// #if !defined(BOOST_NO_STD_LOCALE) && \ (!defined(BOOST_MSVC) || BOOST_WORKAROUND(BOOST_MSVC, >= 1310)) && \ !defined(__MWERKS__) && !BOOST_WORKAROUND(__GNUC__, < 3) template
inline basic_wrap_stringstream
& operator<<( basic_wrap_stringstream
& targ, std::ios_base& (BOOST_TEST_CALL_DECL *man)(std::ios_base&) ) { targ.stream() << man; return targ; } //____________________________________________________________________________// template
inline basic_wrap_stringstream
& operator<<( basic_wrap_stringstream
& targ, std::basic_ostream
& (BOOST_TEST_CALL_DECL *man)(std::basic_ostream
&) ) { targ.stream() << man; return targ; } //____________________________________________________________________________// template
inline basic_wrap_stringstream
& operator<<( basic_wrap_stringstream
& targ, std::basic_ios
& (BOOST_TEST_CALL_DECL *man)(std::basic_ios
&) ) { targ.stream() << man; return targ; } //____________________________________________________________________________// #endif // ************************************************************************** // // ************** wrap_stringstream ************** // // ************************************************************************** // typedef basic_wrap_stringstream
wrap_stringstream; typedef basic_wrap_stringstream
wrap_wstringstream; } // namespace boost //____________________________________________________________________________// #include
#endif // BOOST_WRAP_STRINGSTREAM_HPP_071894GER
wrap_stringstream.hpp
Page URL
File URL
Prev
12/13
Next
Download
( 5 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.