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.Range library concept checks // // Copyright Daniel Walker 2006. Use, modification and distribution // are 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/range/ // #ifndef BOOST_RANGE_CONCEPTS_HPP #define BOOST_RANGE_CONCEPTS_HPP #include
#include
#include
#include
/*! * \file * \brief Concept checks for the Boost Range library. * * The structures in this file may be used in conjunction with the * Boost Concept Check library to insure that the type of a function * parameter is compatible with a range concept. If not, a meaningful * compile time error is generated. Checks are provided for the range * concepts related to iterator traversal categories. For example, the * following line checks that the type T models the ForwardRange * concept. * * \code * function_requires
>(); * \endcode * * An additional concept check is required for the value access * property of the range. For example to check for a * ForwardReadableRange, the following code is required. * * \code * function_requires
>(); * function_requires< * ReadableIteratorConcept< * typename range_iterator
::type * > * >(); * \endcode * * \see http://www.boost.org/libs/range/doc/range.html for details * about range concepts. * \see http://www.boost.org/libs/iterator/doc/iterator_concepts.html * for details about iterator concepts. * \see http://www.boost.org/libs/concept_check/concept_check.htm for * details about concept checks. */ namespace boost { //! Check if a type T models the SinglePassRange range concept. template
struct SinglePassRangeConcept { typedef typename range_iterator
::type range_const_iterator; typedef typename range_iterator
::type range_iterator; void constraints() { function_requires< boost_concepts::SinglePassIteratorConcept< range_iterator > >(); i = boost::begin(a); i = boost::end(a); const_constraints(a); } void const_constraints(const T& a) { ci = boost::begin(a); ci = boost::end(a); } T a; range_iterator i; range_const_iterator ci; }; //! Check if a type T models the ForwardRange range concept. template
struct ForwardRangeConcept { void constraints() { function_requires< SinglePassRangeConcept
>(); function_requires< boost_concepts::ForwardTraversalConcept< typename range_iterator
::type > >(); } }; //! Check if a type T models the BidirectionalRange range concept. template
struct BidirectionalRangeConcept { void constraints() { function_requires< ForwardRangeConcept
>(); function_requires< boost_concepts::BidirectionalTraversalConcept< typename range_iterator
::type > >(); } }; //! Check if a type T models the RandomAccessRange range concept. template
struct RandomAccessRangeConcept { void constraints() { function_requires< BidirectionalRangeConcept
>(); function_requires< boost_concepts::RandomAccessTraversalConcept< typename range_iterator
::type > >(); } }; } // namespace boost #endif // BOOST_RANGE_CONCEPTS_HPP
concepts.hpp
Page URL
File URL
Prev
6/30
Next
Download
( 4 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.