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 (c) 2002-2003 Hartmut Kaiser http://spirit.sourceforge.net/ 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) =============================================================================*/ #ifndef BOOST_SPIRIT_REGEX_HPP #define BOOST_SPIRIT_REGEX_HPP #include
/////////////////////////////////////////////////////////////////////////////// // // Include the regular expression library of boost (Boost.Regex) // // Note though, that this library is not distributed with Spirit. You have to // obtain a separate copy from http://www.boost.org. // /////////////////////////////////////////////////////////////////////////////// #if defined(BOOST_SPIRIT_NO_REGEX_LIB) && BOOST_VERSION < 103300 // // Include all the Boost.regex library. Please note that this will not work, // if you are using the boost/spirit/regex.hpp header from more than one // translation units. // #define BOOST_REGEX_NO_LIB #define BOOST_REGEX_STATIC_LINK #define BOOST_REGEX_NO_EXTERNAL_TEMPLATES #include
#include
#else // // Include the Boost.Regex headers only. Note, that you will have to link your // application against the Boost.Regex library as described in the related // documentation. // This is the only way for Boost newer than V1.32.0 // #include
#endif // defined(BOOST_SPIRIT_NO_REGEX_LIB) #include
/////////////////////////////////////////////////////////////////////////////// #include
#include
#include
#include
// for boost::detail::iterator_traits /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { /////////////////////////////////////////////////////////////////////////////// // rxstrlit class template
struct rxstrlit : public parser
> { typedef rxstrlit self_t; rxstrlit(CharT const *first, CharT const *last) : rx(first, last) {} rxstrlit(CharT const *first) : rx(first) {} template
typename parser_result
::type parse(ScannerT const& scan) const { // Due to limitations in the boost::regex library the iterators wrapped in // the ScannerT object should be at least bidirectional iterators. Plain // forward iterators do not work here. typedef typename ScannerT::iterator_t iterator_t; typedef typename boost::detail::iterator_traits
::iterator_category iterator_category; BOOST_STATIC_ASSERT(( boost::is_convertible
::value )); typedef typename parser_result
::type result_t; return impl::contiguous_parser_parse
(rx, scan, scan); } private: impl::rx_parser
rx; // contains the boost regular expression parser }; /////////////////////////////////////////////////////////////////////////////// // Generator functions template
inline rxstrlit
regex_p(CharT const *first) { return rxstrlit
(first); } ////////////////////////////////// template
inline rxstrlit
regex_p(CharT const *first, CharT const *last) { return rxstrlit
(first, last); } /////////////////////////////////////////////////////////////////////////////// }} // namespace boost::spirit #endif // BOOST_SPIRIT_REGEX_HPP
regex.hpp
Page URL
File URL
Prev
16/19
Next
Download
( 3 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.