DCL 4.0
Loading...
Searching...
No Matches
Regex.cpp File Reference
#include <string.h>
#include <exception>
#include <dcl/Config.h>
#include <dcl/Regex.h>
#include <dcl/Charset.h>
#include <dcl/Array.h>

Go to the source code of this file.

Macros

#define __DCL_INCLUDED_STRING_H

Functions

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO (RegexException, Exception) RegexException

Macro Definition Documentation

◆ __DCL_INCLUDED_STRING_H

#define __DCL_INCLUDED_STRING_H

Definition at line 3 of file Regex.cpp.

Function Documentation

◆ IMPLEMENT_CLASSINFO()

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO ( RegexException ,
Exception  )

Definition at line 24 of file Regex.cpp.

28{
29 StringBuilder sb;
30 sb.append(AsciiDecoder::decode(_name))
31 .append(__T(":"))
32 .append(AsciiDecoder::decode(_what));
33 __message = sb.toString();
34}
#define NULL
Definition Config.h:340
#define __T(str)
Definition Object.h:44
static String decode(const char *_mbs, size_t _mbslen=(size_t) -1)
virtual String toString() const
Definition Exception.cpp:40