summaryrefslogtreecommitdiff
path: root/include/Regex.h
blob: 66f6fc3d16a1f64a231b0499c6eb35ac5dcd2cd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __REGEX_H__
#define __REGEX_H__
#ifdef __cplusplus

#include <Exceptions.h>

class Regex : public Base {
  public:
  private:
};

#else
#error This only works with a C++ compiler
#endif
#endif