mirror of
https://bitbucket.org/seefoe/dockerized-swg-src.git
synced 2026-07-31 01:15:48 -04:00
26 lines
597 B
C++
26 lines
597 B
C++
// ======================================================================
|
|
//
|
|
// 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
|