summaryrefslogtreecommitdiff
path: root/includes/BRegex.h
blob: 128597eb55a4e86c3c324342735772524c3076d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <vector>
#include <sys/types.h>
#include <regex.h>
#include <BString.h>
#include <Exceptions.h>

namespace Balau {

class Regex {
  public:
    typedef std::vector<String> Captures;
      Regex(const char * regex, bool icase = false) throw (GeneralException);
      ~Regex();
    Captures match(const char * str) throw (GeneralException);
  private:
    String getError(int err);
    regex_t m_regex;
};

};