mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-28 23:16:15 -04:00
26 lines
597 B
C++
Executable File
26 lines
597 B
C++
Executable File
// ======================================================================
|
|
//
|
|
// RegexServices.h
|
|
// Copyright 2003 Sony Online Entertainment, Inc.
|
|
// All Rights Reserved.
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_RegexServices_H
|
|
#define INCLUDED_RegexServices_H
|
|
|
|
// ======================================================================
|
|
|
|
class RegexServices
|
|
{
|
|
public:
|
|
|
|
static void *allocateMemory(size_t byteCount);
|
|
static void freeMemory(void *pointer);
|
|
|
|
};
|
|
|
|
// ======================================================================
|
|
|
|
#endif
|