blob: 678604148ae92b55a6e4605b48f6e377e99ee7f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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
|