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 2008 CodeRage, LLC (turkanis at coderage dot com) // (C) Copyright 2003-2007 Jonathan Turkanis // 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/iostreams for documentation. #ifndef BOOST_IOSTREAMS_DETAIL_LINKED_STREAMBUF_HPP_INCLUDED #define BOOST_IOSTREAMS_DETAIL_LINKED_STREAMBUF_HPP_INCLUDED #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include
#include
// member template friends. #include
#include
// openmode. #include
// Must come last. #include
// MSVC. namespace boost { namespace iostreams { namespace detail { template
class chain_base; template
class chainbuf; #define BOOST_IOSTREAMS_USING_PROTECTED_STREAMBUF_MEMBERS(base) \ using base::eback; using base::gptr; using base::egptr; \ using base::setg; using base::gbump; using base::pbase; \ using base::pptr; using base::epptr; using base::setp; \ using base::pbump; using base::underflow; using base::pbackfail; \ using base::xsgetn; using base::overflow; using base::xsputn; \ using base::sync; using base::seekoff; using base::seekpos; \ /**/ template
class linked_streambuf : public BOOST_IOSTREAMS_BASIC_STREAMBUF(Ch, Tr) { protected: linked_streambuf() : flags_(0) { } void set_true_eof(bool eof) { flags_ = (flags_ & ~f_true_eof) | (eof ? f_true_eof : 0); } public: // Should be called only after receiving an ordinary EOF indication, // to confirm that it represents EOF rather than WOULD_BLOCK. bool true_eof() const { return (flags_ & f_true_eof) != 0; } protected: //----------grant friendship to chain_base and chainbuf-------------------// #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS template< typename Self, typename ChT, typename TrT, typename Alloc, typename Mode > friend class chain_base; template
friend class chainbuf; template
friend class member_close_operation; #else public: typedef BOOST_IOSTREAMS_BASIC_STREAMBUF(Ch, Tr) base; BOOST_IOSTREAMS_USING_PROTECTED_STREAMBUF_MEMBERS(base) #endif void close(BOOST_IOS::openmode which) { if ( which == BOOST_IOS::in && (flags_ & f_input_closed) == 0 ) { flags_ |= f_input_closed; close_impl(which); } if ( which == BOOST_IOS::out && (flags_ & f_output_closed) == 0 ) { flags_ |= f_output_closed; close_impl(which); } } void set_needs_close() { flags_ &= ~(f_input_closed | f_output_closed); } virtual void set_next(linked_streambuf
* /* next */) { } virtual void close_impl(BOOST_IOS::openmode) = 0; virtual bool auto_close() const = 0; virtual void set_auto_close(bool) = 0; virtual bool strict_sync() = 0; virtual const std::type_info& component_type() const = 0; virtual void* component_impl() = 0; #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS private: #else public: #endif private: enum flag_type { f_true_eof = 1, f_input_closed = f_true_eof << 1, f_output_closed = f_input_closed << 1 }; int flags_; }; } } } // End namespaces detail, iostreams, boost. #include
// MSVC. #endif // #ifndef BOOST_IOSTREAMS_DETAIL_LINKED_STREAMBUF_HPP_INCLUDED
linked_streambuf.hpp
Page URL
File URL
Prev
4/4 Next
Download
( 3 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.