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
// Copyright David Abrahams 2002. // 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) #ifndef DEF_HELPER_DWA200287_HPP # define DEF_HELPER_DWA200287_HPP # include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
namespace boost { namespace python { struct default_call_policies; namespace detail { // tuple_extract
::extract(t) returns the first // element of a Tuple whose type E satisfies the given Predicate // applied to add_reference
. The Predicate must be an MPL // metafunction class. template
struct tuple_extract; // Implementation class for when the tuple's head type does not // satisfy the Predicate template
struct tuple_extract_impl { template
struct apply { typedef typename Tuple::head_type result_type; static typename Tuple::head_type extract(Tuple const& x) { return x.get_head(); } }; }; // Implementation specialization for when the tuple's head type // satisfies the predicate template <> struct tuple_extract_impl
{ template
struct apply { // recursive application of tuple_extract on the tail of the tuple typedef tuple_extract
next; typedef typename next::result_type result_type; static result_type extract(Tuple const& x) { return next::extract(x.get_tail()); } }; }; // A metafunction which selects a version of tuple_extract_impl to // use for the implementation of tuple_extract template
struct tuple_extract_base_select { typedef typename Tuple::head_type head_type; typedef typename mpl::apply1
::type>::type match_t; BOOST_STATIC_CONSTANT(bool, match = match_t::value); typedef typename tuple_extract_impl
::template apply
type; }; template
struct tuple_extract : tuple_extract_base_select< Tuple , typename mpl::lambda
::type >::type { }; // // Specialized extractors for the docstring, keywords, CallPolicies, // and default implementation of virtual functions // template
struct doc_extract : tuple_extract< Tuple , mpl::not_< mpl::or_< indirect_traits::is_reference_to_class
, indirect_traits::is_reference_to_member_function_pointer
> > > { }; template
struct keyword_extract : tuple_extract
> { }; template
struct policy_extract : tuple_extract< Tuple , mpl::and_< mpl::not_
> , indirect_traits::is_reference_to_class
, mpl::not_
> > > { }; template
struct default_implementation_extract : tuple_extract< Tuple , indirect_traits::is_reference_to_member_function_pointer
> { }; // // A helper class for decoding the optional arguments to def() // invocations, which can be supplied in any order and are // discriminated by their type properties. The template parameters // are expected to be the types of the actual (optional) arguments // passed to def(). // template
struct def_helper { // A tuple type which begins with references to the supplied // arguments and ends with actual representatives of the default // types. typedef boost::tuples::tuple< T1 const& , T2 const& , T3 const& , T4 const& , default_call_policies , detail::keywords<0> , char const* , void(not_specified::*)() // A function pointer type which is never an // appropriate default implementation > all_t; // Constructors; these initialize an member of the tuple type // shown above. def_helper(T1 const& a1) : m_all(a1,m_nil,m_nil,m_nil) {} def_helper(T1 const& a1, T2 const& a2) : m_all(a1,a2,m_nil,m_nil) {} def_helper(T1 const& a1, T2 const& a2, T3 const& a3) : m_all(a1,a2,a3,m_nil) {} def_helper(T1 const& a1, T2 const& a2, T3 const& a3, T4 const& a4) : m_all(a1,a2,a3,a4) {} private: // types typedef typename default_implementation_extract
::result_type default_implementation_t; public: // Constants which can be used for static assertions. // Users must not supply a default implementation for non-class // methods. BOOST_STATIC_CONSTANT( bool, has_default_implementation = ( !is_same
::value)); public: // Extractor functions which pull the appropriate value out // of the tuple char const* doc() const { return doc_extract
::extract(m_all); } typename keyword_extract
::result_type keywords() const { return keyword_extract
::extract(m_all); } typename policy_extract
::result_type policies() const { return policy_extract
::extract(m_all); } default_implementation_t default_implementation() const { return default_implementation_extract
::extract(m_all); } private: // data members all_t m_all; not_specified m_nil; // for filling in not_specified slots }; } }} // namespace boost::python::detail #endif // DEF_HELPER_DWA200287_HPP
def_helper.hpp
Page URL
File URL
Prev
13/65
Next
Download
( 6 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.