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.Bimap // // Copyright (c) 2006-2007 Matias Capeletto // // 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) /// \file bimap.hpp /// \brief Includes the basic bimap container /** \mainpage notitle \n \image html http://matias.capeletto.googlepages.com/boost.bimap.reference.logo.png \section Introduction This is the complete reference of Boost.Bimap. After getting a good understanding of the library from a user perspective the next step will be: - Understand the tagged idiom. (boost::bimaps::tags) - Understand the internals of the relation class (boost::bimaps::relation) - Read the container_adaptor toolbox docs (boost::bimaps::container_adaptor) - Understand the internals of the bimap class. (boost::bimaps, boost::bimaps::views and boost::bimaps::detail) **/ /** \defgroup mutant_group mutant idiom \brief A safe wrapper around reinterpret_cast **/ /** \defgroup relation_group relation \brief The relation **/ /** \defgroup tags_group tagged idiom \brief The tagged idiom **/ #ifndef BOOST_BIMAP_BIMAP_HPP #define BOOST_BIMAP_BIMAP_HPP #if defined(_MSC_VER) && (_MSC_VER>=1200) #pragma once #endif #include
#include
#include
#ifndef BOOST_BIMAP_DISABLE_SERIALIZATION #include
#endif // BOOST_BIMAP_DISABLE_SERIALIZATION // Boost.Bimap #include
#include
#include
#include
#include
#include
#include
#include
/// \brief The namespace where all the boost libraries lives. namespace boost { /// \brief Boost.Bimap library namespace /** All the entities in the library are defined in this namespace. **/ namespace bimaps { /// \brief The bimap class is the entry point to the library. /** This class manages the instantiation of the desired bimap type. As there are several types of bidirectional maps that can be created using it. the main job of it is to find the desired type. This is done using metaprogramming to obtain the relation type that will be stored, the map_view type of each side and the set_view type of the general relationship. The instantiation is kept simple using an extended standard set theory, where a bidirectional map type is defined by the set types it relates. For example, a bidirectional map that has multimap semantics viewed from both sides is defined by specifying that the two keys sets are of \c multiset_of
type. This allows the bimap class to support seamingless N-N, 1-N, ordered/unordered and even vector-list types of mapping. The three last parameters are used to specify the set type of the relation, an inplace hooked data class and the allocator type. As a help to the bimap user, these parameters support default types but use a special idiom that allow them to be specified without interleaving the usual use_default keyword. The possible bimap instantiation are enumerated here: \c {Side}KeyType can be directly a type, this is default to \c set_of<{Side}KeyType>, or can be a \c {SetType}_of
specification. Additionally this two parameters can be tagged to specify others tags instead of the usual \c member_at::{Side} ones. \code typedef bimap < LeftCollectionType, RightCollectionType [ , SetTypeOfRelation ] // Default to left_based [ , info_hook< Info > ] // Default to no info [ , Allocator ] // Default to std::allocator<> > bm; \endcode **/ template < class KeyTypeA, class KeyTypeB, class AP1 = ::boost::mpl::na, class AP2 = ::boost::mpl::na, class AP3 = ::boost::mpl::na > class bimap : // Bimap Core, use mpl magic to find the desired bimap type public ::boost::bimaps::detail::bimap_core
, // You can use bimap as a collection of relations public ::boost::bimaps::detail::bimap_core
::relation_set, // Include extra typedefs (i.e. left_local_iterator for unordered_map) public ::boost::bimaps::detail:: left_map_view_extra_typedefs< BOOST_DEDUCED_TYPENAME ::boost::bimaps::detail::left_map_view_type< ::boost::bimaps::detail::bimap_core
>::type >, public ::boost::bimaps::detail::right_map_view_extra_typedefs< BOOST_DEDUCED_TYPENAME ::boost::bimaps::detail::right_map_view_type< ::boost::bimaps::detail::bimap_core
>::type > { typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::detail:: bimap_core
base_; BOOST_DEDUCED_TYPENAME base_::core_type core; public: // metadata -------------------------------------------------------- /* // The rest is computed in the core, because it is quite difficult to // expose a nice interface with so many metaprogramming stuff. // Here it is the complete metadat list. // Map by {side} metadata typedef -unspecified- {side}_tag; typedef -unspecified- {side}_data_type; typedef -unspecified- {side}_value_type; typedef -unspecified- {side}_key_type; typedef -unspecified- {side}_iterator; typedef -unspecified- {side}_const_iterator; ------------------------------------------------------------------*/ typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::detail:: left_map_view_type
::type left_map; typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::detail:: right_map_view_type
::type right_map; typedef BOOST_DEDUCED_TYPENAME left_map::reference left_reference; typedef BOOST_DEDUCED_TYPENAME left_map::const_reference left_const_reference; typedef BOOST_DEDUCED_TYPENAME right_map::reference right_reference; typedef BOOST_DEDUCED_TYPENAME right_map::const_reference right_const_reference; typedef BOOST_DEDUCED_TYPENAME base_::relation::info_type info_type; /// Left map view left_map left; /// Right map view right_map right; bimap() : base_::relation_set( ::boost::multi_index::get< BOOST_DEDUCED_TYPENAME base_::logic_relation_set_tag >(core) ), left ( ::boost::multi_index::get< BOOST_DEDUCED_TYPENAME base_::logic_left_tag >(core) ), right ( ::boost::multi_index::get< BOOST_DEDUCED_TYPENAME base_::logic_right_tag >(core) ) {} template< class InputIterator > bimap(InputIterator first,InputIterator last) : base_::relation_set( ::boost::multi_index::get< BOOST_DEDUCED_TYPENAME base_::logic_relation_set_tag >(core) ), core(first,last), left ( ::boost::multi_index::get< BOOST_DEDUCED_TYPENAME base_::logic_left_tag >(core) ), right ( ::boost::multi_index::get< BOOST_DEDUCED_TYPENAME base_::logic_right_tag >(core) ) {} bimap(const bimap& x) : base_::relation_set( ::boost::multi_index::get< BOOST_DEDUCED_TYPENAME base_::logic_relation_set_tag >(core) ), core(x.core), left ( ::boost::multi_index::get< BOOST_DEDUCED_TYPENAME base_::logic_left_tag >(core) ), right ( ::boost::multi_index::get< BOOST_DEDUCED_TYPENAME base_::logic_right_tag >(core) ) {} bimap& operator=(const bimap& x) { core = x.core; return *this; } // Projection of iterators template< class IteratorType > BOOST_DEDUCED_TYPENAME base_::left_iterator project_left(IteratorType iter) { return core.template project< BOOST_DEDUCED_TYPENAME base_::logic_left_tag>(iter.base()); } template< class IteratorType > BOOST_DEDUCED_TYPENAME base_::left_const_iterator project_left(IteratorType iter) const { return core.template project< BOOST_DEDUCED_TYPENAME base_::logic_left_tag>(iter.base()); } template< class IteratorType > BOOST_DEDUCED_TYPENAME base_::right_iterator project_right(IteratorType iter) { return core.template project< BOOST_DEDUCED_TYPENAME base_::logic_right_tag>(iter.base()); } template< class IteratorType > BOOST_DEDUCED_TYPENAME base_::right_const_iterator project_right(IteratorType iter) const { return core.template project< BOOST_DEDUCED_TYPENAME base_::logic_right_tag>(iter.base()); } template< class IteratorType > BOOST_DEDUCED_TYPENAME base_::relation_set::iterator project_up(IteratorType iter) { return core.template project< BOOST_DEDUCED_TYPENAME base_::logic_relation_set_tag>(iter.base()); } template< class IteratorType > BOOST_DEDUCED_TYPENAME base_::relation_set::const_iterator project_up(IteratorType iter) const { return core.template project< BOOST_DEDUCED_TYPENAME base_::logic_relation_set_tag>(iter.base()); } // Support for tags template< class Tag, class IteratorType > BOOST_DEDUCED_TYPENAME ::boost::bimaps::support:: iterator_type_by
::type project(IteratorType iter BOOST_APPEND_EXPLICIT_TEMPLATE_TYPE(Tag)) { return core.template project
(iter.base()); } template< class Tag, class IteratorType > BOOST_DEDUCED_TYPENAME ::boost::bimaps::support:: const_iterator_type_by
::type project(IteratorType iter BOOST_APPEND_EXPLICIT_TEMPLATE_TYPE(Tag)) const { return core.template project
(iter.base()); } template< class Tag > struct map_by : public ::boost::bimaps::support::map_type_by
::type { typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::support:: map_type_by
::type type; private: map_by() {} }; template< class Tag > BOOST_DEDUCED_TYPENAME ::boost::bimaps::support:: map_type_by
::type & by(BOOST_EXPLICIT_TEMPLATE_TYPE(Tag)) { return ::boost::bimaps::support::map_by
(*this); } template< class Tag > const BOOST_DEDUCED_TYPENAME ::boost::bimaps::support:: map_type_by
::type & by(BOOST_EXPLICIT_TEMPLATE_TYPE(Tag)) const { return ::boost::bimaps::support::map_by
(*this); } #ifndef BOOST_BIMAP_DISABLE_SERIALIZATION // Serialization support private: friend class boost::serialization::access; template
void serialize(Archive & ar, const unsigned int version) { ar & serialization::make_nvp("mi_core",core); } #endif // BOOST_BIMAP_DISABLE_SERIALIZATION }; } // namespace bimaps } // namespace boost /** \namespace boost::bimaps::support \brief Metafunctions to help working with bimaps. **/ /** \namespace boost::bimaps::views \brief Bimap views. **/ /** \namespace boost::bimaps::views::detail \brief Bimap views details. **/ // Include basic tools for user commodity #include
#include
#include
// Bring the most used namespaces directly to the user main namespace namespace boost { namespace bimaps { using ::boost::bimaps::tags::tagged; namespace member_at = ::boost::bimaps::relation::member_at; using ::boost::multi_index::unbounded; } // namespace bimaps } // namespace boost #endif // BOOST_BIMAP_BIMAP_HPP
bimap.hpp
Page URL
File URL
Prev 1/8
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.