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
// Boost.Assign library // // Copyright Thorsten Ottosen 2003-2004. Use, modification and // distribution is subject to 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) // // For more information, see http://www.boost.org/libs/assign/ // #ifndef BOOST_ASSIGN_LIST_INSERTER_HPP #define BOOST_ASSIGN_LIST_INSERTER_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
namespace boost { namespace assign_detail { template< class T > struct repeater { std::size_t sz; T val; repeater( std::size_t sz, T r ) : sz( sz ), val( r ) { } }; template< class Fun > struct fun_repeater { std::size_t sz; Fun val; fun_repeater( std::size_t sz, Fun r ) : sz( sz ), val( r ) { } }; template< class C > class call_push_back { C& c_; public: call_push_back( C& c ) : c_( c ) { } template< class T > void operator()( T r ) { c_.push_back( r ); } }; template< class C > class call_push_front { C& c_; public: call_push_front( C& c ) : c_( c ) { } template< class T > void operator()( T r ) { c_.push_front( r ); } }; template< class C > class call_push { C& c_; public: call_push( C& c ) : c_( c ) { } template< class T > void operator()( T r ) { c_.push( r ); } }; template< class C > class call_insert { C& c_; public: call_insert( C& c ) : c_( c ) { } template< class T > void operator()( T r ) { c_.insert( r ); } }; template< class C > class call_add_edge { C& c_; public: call_add_edge( C& c ) : c_(c) { } template< class T > void operator()( T l, T r ) { add_edge( l, r, c_ ); } template< class T, class EP > void operator()( T l, T r, const EP& ep ) { add_edge( l, r, ep, c_ ); } }; struct forward_n_arguments {}; } // namespace 'assign_detail' namespace assign { template< class T > inline assign_detail::repeater
repeat( std::size_t sz, T r ) { return assign_detail::repeater
( sz, r ); } template< class Function > inline assign_detail::fun_repeater
repeat_fun( std::size_t sz, Function r ) { return assign_detail::fun_repeater
( sz, r ); } template< class Function, class Argument = assign_detail::forward_n_arguments > class list_inserter { struct single_arg_type {}; struct n_arg_type {}; typedef BOOST_DEDUCED_TYPENAME mpl::if_c< is_same
::value, n_arg_type, single_arg_type >::type arg_type; public: list_inserter( Function fun ) : insert_( fun ) {} template< class Function2, class Arg > list_inserter( const list_inserter
& r ) : insert_( r.fun_private() ) {} list_inserter( const list_inserter& r ) : insert_( r.insert_ ) {} list_inserter& operator()() { insert_( Argument() ); return *this; } template< class T > list_inserter& operator=( const T& r ) { insert_( r ); return *this; } template< class T > list_inserter& operator=( assign_detail::repeater
r ) { return operator,( r ); } template< class Nullary_function > list_inserter& operator=( const assign_detail::fun_repeater
& r ) { //BOOST_STATIC_ASSERT( function_traits
::arity == 0 ); //BOOST_STATIC_ASSERT( is_convertible< BOOST_DEDUCED_TYPENAME function_traits< // Nullary_function>::result_type >,T>::value ); return operator,( r ); } template< class T > list_inserter& operator,( const T& r ) { insert_( r ); return *this; } #if BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3205)) template< class T > list_inserter& operator,( const assign_detail::repeater
& r ) { return repeat( r.sz, r.val ); } #else template< class T > list_inserter& operator,( assign_detail::repeater
r ) { return repeat( r.sz, r.val ); } #endif template< class Nullary_function > list_inserter& operator,( const assign_detail::fun_repeater
& r ) { return repeat_fun( r.sz, r.val ); } template< class T > list_inserter& repeat( std::size_t sz, T r ) { std::size_t i = 0; while( i++ != sz ) insert_( r ); return *this; } template< class Nullary_function > list_inserter& repeat_fun( std::size_t sz, Nullary_function fun ) { std::size_t i = 0; while( i++ != sz ) insert_( fun() ); return *this; } template< class SinglePassIterator > list_inserter& range( SinglePassIterator first, SinglePassIterator last ) { for( ; first != last; ++first ) insert_( *first ); return *this; } template< class SinglePassRange > list_inserter& range( const SinglePassRange& r ) { return range( boost::begin(r), boost::end(r) ); } template< class T > list_inserter& operator()( const T& t ) { insert_( t ); return *this; } #ifndef BOOST_ASSIGN_MAX_PARAMS // use user's value #define BOOST_ASSIGN_MAX_PARAMS 5 #endif #define BOOST_ASSIGN_MAX_PARAMETERS (BOOST_ASSIGN_MAX_PARAMS - 1) #define BOOST_ASSIGN_PARAMS1(n) BOOST_PP_ENUM_PARAMS(n, class T) #define BOOST_ASSIGN_PARAMS2(n) BOOST_PP_ENUM_BINARY_PARAMS(n, T, const& t) #define BOOST_ASSIGN_PARAMS3(n) BOOST_PP_ENUM_PARAMS(n, t) #define BOOST_PP_LOCAL_LIMITS (1, BOOST_ASSIGN_MAX_PARAMETERS) #define BOOST_PP_LOCAL_MACRO(n) \ template< class T, BOOST_ASSIGN_PARAMS1(n) > \ list_inserter& operator()(T t, BOOST_ASSIGN_PARAMS2(n) ) \ { \ BOOST_PP_CAT(insert, BOOST_PP_INC(n))(t, BOOST_ASSIGN_PARAMS3(n), arg_type()); \ return *this; \ } \ /**/ #include BOOST_PP_LOCAL_ITERATE() #define BOOST_PP_LOCAL_LIMITS (1, BOOST_ASSIGN_MAX_PARAMETERS) #define BOOST_PP_LOCAL_MACRO(n) \ template< class T, BOOST_ASSIGN_PARAMS1(n) > \ void BOOST_PP_CAT(insert, BOOST_PP_INC(n))(T const& t, BOOST_ASSIGN_PARAMS2(n), single_arg_type) \ { \ insert_( Argument(t, BOOST_ASSIGN_PARAMS3(n) )); \ } \ /**/ #include BOOST_PP_LOCAL_ITERATE() #define BOOST_PP_LOCAL_LIMITS (1, BOOST_ASSIGN_MAX_PARAMETERS) #define BOOST_PP_LOCAL_MACRO(n) \ template< class T, BOOST_ASSIGN_PARAMS1(n) > \ void BOOST_PP_CAT(insert, BOOST_PP_INC(n))(T const& t, BOOST_ASSIGN_PARAMS2(n), n_arg_type) \ { \ insert_(t, BOOST_ASSIGN_PARAMS3(n) ); \ } \ /**/ #include BOOST_PP_LOCAL_ITERATE() Function fun_private() const { return insert_; } private: list_inserter& operator=( const list_inserter& ); Function insert_; }; template< class Function > inline list_inserter< Function > make_list_inserter( Function fun ) { return list_inserter< Function >( fun ); } template< class Function, class Argument > inline list_inserter
make_list_inserter( Function fun, Argument* ) { return list_inserter
( fun ); } template< class C > inline list_inserter< assign_detail::call_push_back
, BOOST_DEDUCED_TYPENAME C::value_type > push_back( C& c ) { static BOOST_DEDUCED_TYPENAME C::value_type* p = 0; return make_list_inserter( assign_detail::call_push_back
( c ), p ); } template< class C > inline list_inserter< assign_detail::call_push_front
, BOOST_DEDUCED_TYPENAME C::value_type > push_front( C& c ) { static BOOST_DEDUCED_TYPENAME C::value_type* p = 0; return make_list_inserter( assign_detail::call_push_front
( c ), p ); } template< class C > inline list_inserter< assign_detail::call_insert
, BOOST_DEDUCED_TYPENAME C::value_type > insert( C& c ) { static BOOST_DEDUCED_TYPENAME C::value_type* p = 0; return make_list_inserter( assign_detail::call_insert
( c ), p ); } template< class C > inline list_inserter< assign_detail::call_push
, BOOST_DEDUCED_TYPENAME C::value_type > push( C& c ) { static BOOST_DEDUCED_TYPENAME C::value_type* p = 0; return make_list_inserter( assign_detail::call_push
( c ), p ); } template< class C > inline list_inserter< assign_detail::call_add_edge
> add_edge( C& c ) { return make_list_inserter( assign_detail::call_add_edge
( c ) ); } } // namespace 'assign' } // namespace 'boost' #undef BOOST_ASSIGN_PARAMS1 #undef BOOST_ASSIGN_PARAMS2 #undef BOOST_ASSIGN_PARAMS3 #undef BOOST_ASSIGN_MAX_PARAMETERS #endif
list_inserter.hpp
Page URL
File URL
Prev
2/7
Next
Download
( 10 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.