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 2008 CodeRage, LLC (turkanis at coderage dot com) // (C) Copyright 2004-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. // Contains the definition of the class template // boost::iostreams::detail::double_object, which is similar to compressed pair // except that both members of the pair have the same type, and // compression occurs only if requested using a boolean template // parameter. #ifndef BOOST_IOSTREAMS_DETAIL_DOUBLE_OBJECT_HPP_INCLUDED #define BOOST_IOSTREAMS_DETAIL_DOUBLE_OBJECT_HPP_INCLUDED #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include
// swap. #include
#include
#if BOOST_WORKAROUND(__MWERKS__, > 0x3003) # include
#else # include
#endif namespace boost { namespace iostreams { namespace detail { template
class single_object_holder { public: #if BOOST_WORKAROUND(__MWERKS__, > 0x3003) typedef Metrowerks::call_traits
traits_type; #else typedef boost::call_traits
traits_type; #endif typedef typename traits_type::param_type param_type; typedef typename traits_type::reference reference; typedef typename traits_type::const_reference const_reference; single_object_holder() { } single_object_holder(param_type t) : first_(t) { } reference first() { return first_; } const_reference first() const { return first_; } reference second() { return first_; } const_reference second() const { return first_; } void swap(single_object_holder& o) { std::swap(first_, o.first_); } private: T first_; }; template
struct double_object_holder { public: #if BOOST_WORKAROUND(__MWERKS__, > 0x3003) typedef Metrowerks::call_traits
traits_type; #else typedef boost::call_traits
traits_type; #endif typedef typename traits_type::param_type param_type; typedef typename traits_type::reference reference; typedef typename traits_type::const_reference const_reference; double_object_holder() { } double_object_holder(param_type t1, param_type t2) : first_(t1), second_(t2) { } reference first() { return first_; } const_reference first() const { return first_; } reference second() { return second_; } const_reference second() const { return second_; } void swap(double_object_holder& d) { std::swap(first_, d.first_); std::swap(second_, d.second_); } private: T first_, second_; }; template
class double_object : public mpl::if_< IsDouble, double_object_holder
, single_object_holder
>::type { private: typedef typename mpl::if_< IsDouble, double_object_holder
, single_object_holder
>::type base_type; public: #if BOOST_WORKAROUND(__MWERKS__, > 0x3003) typedef Metrowerks::call_traits
traits_type; #else typedef boost::call_traits
traits_type; #endif typedef typename traits_type::param_type param_type; typedef typename traits_type::reference reference; typedef typename traits_type::const_reference const_reference; double_object() : base_type() {} double_object(param_type t1, param_type t2) : base_type(t1, t2) { } bool is_double() const { return IsDouble::value; } }; } } } // End namespaces detail, iostreams, boost. #endif // #ifndef BOOST_IOSTREAMS_DETAIL_DOUBLE_OBJECT_HPP_INCLUDED
double_object.hpp
Page URL
File URL
Prev
14/38
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.