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
#ifndef BOOST_BIND_STORAGE_HPP_INCLUDED #define BOOST_BIND_STORAGE_HPP_INCLUDED // MS compatible compilers support #pragma once #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif // // bind/storage.hpp // // boost/bind.hpp support header, optimized storage // // Copyright (c) 2006 Peter Dimov // // 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/bind/bind.html for documentation. // #include
#include
#ifdef BOOST_MSVC # pragma warning(push) # pragma warning(disable: 4512) // assignment operator could not be generated #endif namespace boost { namespace _bi { // 1 template
struct storage1 { explicit storage1( A1 a1 ): a1_( a1 ) {} template
void accept(V & v) const { BOOST_BIND_VISIT_EACH(v, a1_, 0); } A1 a1_; }; #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) && !defined( __BORLANDC__ ) template
struct storage1< boost::arg
> { explicit storage1( boost::arg
) {} template
void accept(V &) const { } static boost::arg
a1_() { return boost::arg
(); } }; template
struct storage1< boost::arg
(*) () > { explicit storage1( boost::arg
(*) () ) {} template
void accept(V &) const { } static boost::arg
a1_() { return boost::arg
(); } }; #endif // 2 template
struct storage2: public storage1
{ typedef storage1
inherited; storage2( A1 a1, A2 a2 ): storage1
( a1 ), a2_( a2 ) {} template
void accept(V & v) const { inherited::accept(v); BOOST_BIND_VISIT_EACH(v, a2_, 0); } A2 a2_; }; #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) template
struct storage2< A1, boost::arg
>: public storage1
{ typedef storage1
inherited; storage2( A1 a1, boost::arg
): storage1
( a1 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a2_() { return boost::arg
(); } }; template
struct storage2< A1, boost::arg
(*) () >: public storage1
{ typedef storage1
inherited; storage2( A1 a1, boost::arg
(*) () ): storage1
( a1 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a2_() { return boost::arg
(); } }; #endif // 3 template
struct storage3: public storage2< A1, A2 > { typedef storage2
inherited; storage3( A1 a1, A2 a2, A3 a3 ): storage2
( a1, a2 ), a3_( a3 ) {} template
void accept(V & v) const { inherited::accept(v); BOOST_BIND_VISIT_EACH(v, a3_, 0); } A3 a3_; }; #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) template
struct storage3< A1, A2, boost::arg
>: public storage2< A1, A2 > { typedef storage2
inherited; storage3( A1 a1, A2 a2, boost::arg
): storage2
( a1, a2 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a3_() { return boost::arg
(); } }; template
struct storage3< A1, A2, boost::arg
(*) () >: public storage2< A1, A2 > { typedef storage2
inherited; storage3( A1 a1, A2 a2, boost::arg
(*) () ): storage2
( a1, a2 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a3_() { return boost::arg
(); } }; #endif // 4 template
struct storage4: public storage3< A1, A2, A3 > { typedef storage3
inherited; storage4( A1 a1, A2 a2, A3 a3, A4 a4 ): storage3
( a1, a2, a3 ), a4_( a4 ) {} template
void accept(V & v) const { inherited::accept(v); BOOST_BIND_VISIT_EACH(v, a4_, 0); } A4 a4_; }; #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) template
struct storage4< A1, A2, A3, boost::arg
>: public storage3< A1, A2, A3 > { typedef storage3
inherited; storage4( A1 a1, A2 a2, A3 a3, boost::arg
): storage3
( a1, a2, a3 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a4_() { return boost::arg
(); } }; template
struct storage4< A1, A2, A3, boost::arg
(*) () >: public storage3< A1, A2, A3 > { typedef storage3
inherited; storage4( A1 a1, A2 a2, A3 a3, boost::arg
(*) () ): storage3
( a1, a2, a3 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a4_() { return boost::arg
(); } }; #endif // 5 template
struct storage5: public storage4< A1, A2, A3, A4 > { typedef storage4
inherited; storage5( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5 ): storage4
( a1, a2, a3, a4 ), a5_( a5 ) {} template
void accept(V & v) const { inherited::accept(v); BOOST_BIND_VISIT_EACH(v, a5_, 0); } A5 a5_; }; #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) template
struct storage5< A1, A2, A3, A4, boost::arg
>: public storage4< A1, A2, A3, A4 > { typedef storage4
inherited; storage5( A1 a1, A2 a2, A3 a3, A4 a4, boost::arg
): storage4
( a1, a2, a3, a4 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a5_() { return boost::arg
(); } }; template
struct storage5< A1, A2, A3, A4, boost::arg
(*) () >: public storage4< A1, A2, A3, A4 > { typedef storage4
inherited; storage5( A1 a1, A2 a2, A3 a3, A4 a4, boost::arg
(*) () ): storage4
( a1, a2, a3, a4 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a5_() { return boost::arg
(); } }; #endif // 6 template
struct storage6: public storage5< A1, A2, A3, A4, A5 > { typedef storage5
inherited; storage6( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6 ): storage5
( a1, a2, a3, a4, a5 ), a6_( a6 ) {} template
void accept(V & v) const { inherited::accept(v); BOOST_BIND_VISIT_EACH(v, a6_, 0); } A6 a6_; }; #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) template
struct storage6< A1, A2, A3, A4, A5, boost::arg
>: public storage5< A1, A2, A3, A4, A5 > { typedef storage5
inherited; storage6( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, boost::arg
): storage5
( a1, a2, a3, a4, a5 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a6_() { return boost::arg
(); } }; template
struct storage6< A1, A2, A3, A4, A5, boost::arg
(*) () >: public storage5< A1, A2, A3, A4, A5 > { typedef storage5
inherited; storage6( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, boost::arg
(*) () ): storage5
( a1, a2, a3, a4, a5 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a6_() { return boost::arg
(); } }; #endif // 7 template
struct storage7: public storage6< A1, A2, A3, A4, A5, A6 > { typedef storage6
inherited; storage7( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7 ): storage6
( a1, a2, a3, a4, a5, a6 ), a7_( a7 ) {} template
void accept(V & v) const { inherited::accept(v); BOOST_BIND_VISIT_EACH(v, a7_, 0); } A7 a7_; }; #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) template
struct storage7< A1, A2, A3, A4, A5, A6, boost::arg
>: public storage6< A1, A2, A3, A4, A5, A6 > { typedef storage6
inherited; storage7( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, boost::arg
): storage6
( a1, a2, a3, a4, a5, a6 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a7_() { return boost::arg
(); } }; template
struct storage7< A1, A2, A3, A4, A5, A6, boost::arg
(*) () >: public storage6< A1, A2, A3, A4, A5, A6 > { typedef storage6
inherited; storage7( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, boost::arg
(*) () ): storage6
( a1, a2, a3, a4, a5, a6 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a7_() { return boost::arg
(); } }; #endif // 8 template
struct storage8: public storage7< A1, A2, A3, A4, A5, A6, A7 > { typedef storage7
inherited; storage8( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8 ): storage7
( a1, a2, a3, a4, a5, a6, a7 ), a8_( a8 ) {} template
void accept(V & v) const { inherited::accept(v); BOOST_BIND_VISIT_EACH(v, a8_, 0); } A8 a8_; }; #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) template
struct storage8< A1, A2, A3, A4, A5, A6, A7, boost::arg
>: public storage7< A1, A2, A3, A4, A5, A6, A7 > { typedef storage7
inherited; storage8( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, boost::arg
): storage7
( a1, a2, a3, a4, a5, a6, a7 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a8_() { return boost::arg
(); } }; template
struct storage8< A1, A2, A3, A4, A5, A6, A7, boost::arg
(*) () >: public storage7< A1, A2, A3, A4, A5, A6, A7 > { typedef storage7
inherited; storage8( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, boost::arg
(*) () ): storage7
( a1, a2, a3, a4, a5, a6, a7 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a8_() { return boost::arg
(); } }; #endif // 9 template
struct storage9: public storage8< A1, A2, A3, A4, A5, A6, A7, A8 > { typedef storage8
inherited; storage9( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9 ): storage8
( a1, a2, a3, a4, a5, a6, a7, a8 ), a9_( a9 ) {} template
void accept(V & v) const { inherited::accept(v); BOOST_BIND_VISIT_EACH(v, a9_, 0); } A9 a9_; }; #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) template
struct storage9< A1, A2, A3, A4, A5, A6, A7, A8, boost::arg
>: public storage8< A1, A2, A3, A4, A5, A6, A7, A8 > { typedef storage8
inherited; storage9( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, boost::arg
): storage8
( a1, a2, a3, a4, a5, a6, a7, a8 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a9_() { return boost::arg
(); } }; template
struct storage9< A1, A2, A3, A4, A5, A6, A7, A8, boost::arg
(*) () >: public storage8< A1, A2, A3, A4, A5, A6, A7, A8 > { typedef storage8
inherited; storage9( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, boost::arg
(*) () ): storage8
( a1, a2, a3, a4, a5, a6, a7, a8 ) {} template
void accept(V & v) const { inherited::accept(v); } static boost::arg
a9_() { return boost::arg
(); } }; #endif } // namespace _bi } // namespace boost #ifdef BOOST_MSVC # pragma warning(default: 4512) // assignment operator could not be generated # pragma warning(pop) #endif #endif // #ifndef BOOST_BIND_STORAGE_HPP_INCLUDED
storage.hpp
Page URL
File URL
Prev
12/12 Next
Download
( 13 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.