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 Lambda Library -- member_ptr.hpp --------------------- // Copyright (C) 1999, 2000 Jaakko J�rvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000 Gary Powell (gary.powell@sierra.com) // // 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) // // For more information, see www.boost.org // -------------------------------------------------------------------------- #if !defined(BOOST_LAMBDA_MEMBER_PTR_HPP) #define BOOST_LAMBDA_MEMBER_PTR_HPP namespace boost { namespace lambda { class member_pointer_action {}; namespace detail { // the boost type_traits member_pointer traits are not enough, // need to know more details. template
struct member_pointer { typedef typename boost::add_reference
::type type; typedef detail::unspecified class_type; typedef detail::unspecified qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = false); }; template
struct member_pointer
{ typedef typename boost::add_reference
::type type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = true); BOOST_STATIC_CONSTANT(bool, is_function_member = false); }; template
struct member_pointer
{ typedef typename boost::add_reference
::type type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = true); BOOST_STATIC_CONSTANT(bool, is_function_member = false); }; template
struct member_pointer
{ typedef typename boost::add_reference
::type type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = true); BOOST_STATIC_CONSTANT(bool, is_function_member = false); }; template
struct member_pointer
{ typedef typename boost::add_reference
::type type; typedef U class_type; typedef const volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = true); BOOST_STATIC_CONSTANT(bool, is_function_member = false); }; // -- nonconst member functions -- template
struct member_pointer
{ typedef T type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; // -- const member functions -- template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; // -- volatile -- template
struct member_pointer
{ typedef T type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; // -- const volatile template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const volatile U qualified_class_type; }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; template
struct member_pointer
{ typedef T type; typedef U class_type; typedef const volatile U qualified_class_type; BOOST_STATIC_CONSTANT(bool, is_data_member = false); BOOST_STATIC_CONSTANT(bool, is_function_member = true); }; } // detail namespace detail { // this class holds a pointer to a member function and the object. // when called, it just calls the member function with the parameters // provided // It would have been possible to use existing lambda_functors to represent // a bound member function like this, but to have a separate template is // safer, since now this functor doesn't mix and match with lambda_functors // only thing you can do with this is to call it // note that previously instantiated classes // (other_action
and member_pointer_action_helper // guarantee, that A and B are // such types, that for objects a and b of corresponding types, a->*b leads // to the builtin ->* to be called. So types that would end in a call to // a user defined ->* do not create a member_pointer_caller object. template
class member_pointer_caller { A a; B b; public: member_pointer_caller(const A& aa, const B& bb) : a(aa), b(bb) {} RET operator()() const { return (a->*b)(); } template
RET operator()(const A1& a1) const { return (a->*b)(a1); } template
RET operator()(const A1& a1, const A2& a2) const { return (a->*b)(a1, a2); } template
RET operator()(const A1& a1, const A2& a2, const A3& a3) const { return (a->*b)(a1, a2, a3); } template
RET operator()(const A1& a1, const A2& a2, const A3& a3, const A4& a4) const { return (a->*b)(a1, a2, a3, a4); } template
RET operator()(const A1& a1, const A2& a2, const A3& a3, const A4& a4, const A5& a5) const { return (a->*b)(a1, a2, a3, a4, a5); } template
RET operator()(const A1& a1, const A2& a2, const A3& a3, const A4& a4, const A5& a5, const A6& a6) const { return (a->*b)(a1, a2, a3, a4, a5, a6); } template
RET operator()(const A1& a1, const A2& a2, const A3& a3, const A4& a4, const A5& a5, const A6& a6, const A7& a7) const { return (a->*b)(a1, a2, a3, a4, a5, a6, a7); } template
RET operator()(const A1& a1, const A2& a2, const A3& a3, const A4& a4, const A5& a5, const A6& a6, const A7& a7, const A8& a8) const { return (a->*b)(a1, a2, a3, a4, a5, a6, a7, a8); } template
RET operator()(const A1& a1, const A2& a2, const A3& a3, const A4& a4, const A5& a5, const A6& a6, const A7& a7, const A8& a8, const A9& a9) const { return (a->*b)(a1, a2, a3, a4, a5, a6, a7, a8, a9); } }; // helper templates for return type deduction and action classes // different cases for data member, function member, neither // true-true case template
struct member_pointer_action_helper; // cannot be both, no body provided // data member case // this means, that B is a data member and A is a pointer type, // so either built-in ->* should be called, or there is an error template <> struct member_pointer_action_helper
{ public: template
static RET apply(A& a, B& b) { return a->*b; } template
struct return_type { private: typedef typename detail::remove_reference_and_cv
::type plainB; typedef typename detail::member_pointer
::type type0; // we remove the reference now, as we may have to add cv:s typedef typename boost::remove_reference
::type type1; // A is a reference to pointer // remove the top level cv qualifiers and reference typedef typename detail::remove_reference_and_cv
::type non_ref_A; // A is a pointer type, so take the type pointed to typedef typename ::boost::remove_pointer
::type non_pointer_A; public: // For non-reference types, we must add const and/or volatile if // the pointer type has these qualifiers // If the member is a reference, these do not have any effect // (cv T == T if T is a reference type) typedef typename detail::IF< ::boost::is_const
::value, typename ::boost::add_const
::type, type1 >::RET type2; typedef typename detail::IF< ::boost::is_volatile
::value, typename ::boost::add_volatile
::type, type2 >::RET type3; // add reference back typedef typename ::boost::add_reference
::type type; }; }; // neither case template <> struct member_pointer_action_helper
{ public: template
static RET apply(A& a, B& b) { // not a built in member pointer operator, just call ->* return a->*b; } // an overloaded member pointer operators, user should have specified // the return type // At this point we know that there is no matching specialization for // return_type_2, so try return_type_2_plain template
struct return_type { typedef typename plain_return_type_2< other_action
, A, B >::type type; }; }; // member pointer function case // This is a built in ->* call for a member function, // the only thing that you can do with that, is to give it some arguments // note, it is guaranteed that A is a pointer type, and thus it cannot // be a call to overloaded ->* template <> struct member_pointer_action_helper
{ public: template
static RET apply(A& a, B& b) { typedef typename ::boost::remove_cv
::type plainB; typedef typename detail::member_pointer
::type ret_t; typedef typename ::boost::remove_cv
::type plainA; // we always strip cv:s to // make the two routes (calling and type deduction) // to give the same results (and the const does not make any functional // difference) return detail::member_pointer_caller
(a, b); } template
struct return_type { typedef typename detail::remove_reference_and_cv
::type plainB; typedef typename detail::member_pointer
::type ret_t; typedef typename detail::remove_reference_and_cv
::type plainA; typedef detail::member_pointer_caller
type; }; }; } // detail template<> class other_action
{ public: template
static RET apply(A& a, B& b) { typedef typename ::boost::remove_cv
::type plainB; return detail::member_pointer_action_helper< boost::is_pointer
::value && detail::member_pointer
::is_data_member, boost::is_pointer
::value && detail::member_pointer
::is_function_member >::template apply
(a, b); } }; // return type deduction -- // If the right argument is a pointer to data member, // and the left argument is of compatible pointer to class type // return type is a reference to the data member type // if right argument is a pointer to a member function, and the left // argument is of a compatible type, the return type is a // member_pointer_caller (see above) // Otherwise, return type deduction fails. There is either an error, // or the user is trying to call an overloaded ->* // In such a case either ret<> must be used, or a return_type_2 user // defined specialization must be provided template
struct return_type_2
, A, B> { private: typedef typename detail::remove_reference_and_cv
::type plainB; public: typedef typename detail::member_pointer_action_helper< detail::member_pointer
::is_data_member, detail::member_pointer
::is_function_member >::template return_type
::type type; }; // this is the way the generic lambda_functor_base functions instantiate // return type deduction. We turn it into return_type_2, so that the // user can provide specializations on that level. template
struct return_type_N
, Args> { typedef typename boost::tuples::element<0, Args>::type A; typedef typename boost::tuples::element<1, Args>::type B; typedef typename return_type_2
, typename boost::remove_reference
::type, typename boost::remove_reference
::type >::type type; }; template
inline const lambda_functor< lambda_functor_base< action<2, other_action
>, tuple
, typename const_copy_argument
::type> > > operator->*(const lambda_functor
& a1, const Arg2& a2) { return lambda_functor_base< action<2, other_action
>, tuple
, typename const_copy_argument
::type> > (tuple
, typename const_copy_argument
::type>(a1, a2)); } template
inline const lambda_functor< lambda_functor_base< action<2, other_action
>, tuple
, lambda_functor
> > > operator->*(const lambda_functor
& a1, const lambda_functor
& a2) { return lambda_functor_base< action<2, other_action
>, tuple
, lambda_functor
> > (tuple
, lambda_functor
>(a1, a2)); } template
inline const lambda_functor< lambda_functor_base< action<2, other_action
>, tuple
::type, lambda_functor
> > > operator->*(const Arg1& a1, const lambda_functor
& a2) { return lambda_functor_base< action<2, other_action
>, tuple
::type, lambda_functor
> > (tuple
::type, lambda_functor
>(a1, a2)); } } // namespace lambda } // namespace boost #endif
member_ptr.hpp
Page URL
File URL
Prev
13/20
Next
Download
( 26 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.