aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/RegExp.hh
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2007-12-28 06:15:06 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2007-12-28 06:15:06 (GMT)
commit32eb2a148ea7a257a058658af36e9f8c801a524a (patch)
tree1a540358fe1e9afb8566b0bc5a9f134ded2a2f7f /src/FbTk/RegExp.hh
parent39224b0142078376d2bd39789b4de24a18377cf0 (diff)
downloadfluxbox_pavel-32eb2a148ea7a257a058658af36e9f8c801a524a.zip
fluxbox_pavel-32eb2a148ea7a257a058658af36e9f8c801a524a.tar.bz2
move RegExp to FbTk
Diffstat (limited to 'src/FbTk/RegExp.hh')
-rw-r--r--src/FbTk/RegExp.hh66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/FbTk/RegExp.hh b/src/FbTk/RegExp.hh
new file mode 100644
index 0000000..0386670
--- /dev/null
+++ b/src/FbTk/RegExp.hh
@@ -0,0 +1,66 @@
1// RegExp.hh for FbTk
2// Copyright (c) 2002 Xavier Brouckaert
3// Copyright (c) 2003 Henrik Kinnunen (fluxgen at fluxbox dot org)
4// and Simon Bowden (rathnor at users.sourceforge.net)
5//
6// Permission is hereby granted, free of charge, to any person obtaining a
7// copy of this software and associated documentation files (the "Software"),
8// to deal in the Software without restriction, including without limitation
9// the rights to use, copy, modify, merge, publish, distribute, sublicense,
10// and/or sell copies of the Software, and to permit persons to whom the
11// Software is furnished to do so, subject to the following conditions:
12//
13// The above copyright notice and this permission notice shall be included in
14// all copies or substantial portions of the Software.
15//
16// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22// DEALINGS IN THE SOFTWARE.
23
24#ifndef FBTK_REGEXP_HH
25#define FBTK_REGEXP_HH
26
27#include "NotCopyable.hh"
28
29#ifdef HAVE_CONFIG_H
30#include "config.h"
31#endif // HAVE_CONFIG_H
32
33#include <string>
34
35/*
36 * If USE_REGEXP isn't defined, then we match just using simple string equality
37 */
38
39#ifdef USE_REGEXP
40#include <sys/types.h>
41#include <regex.h>
42#endif // USE_REGEXP
43
44namespace FbTk {
45
46class RegExp: private NotCopyable {
47public:
48 RegExp(const std::string &str, bool full_match = true);
49 ~RegExp();
50
51 bool match(const std::string &str) const;
52
53 bool error() const;
54
55private:
56#ifdef USE_REGEXP
57 regex_t* m_regex;
58#else // notdef USE_REGEXP
59 std::string m_str;
60#endif // USE_REGEXP
61
62};
63
64}; // end namespace FbTk
65
66#endif // FBTK_REGEXP_HH