mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-05 06:16:47 -04:00
28 lines
668 B
C++
Executable File
28 lines
668 B
C++
Executable File
// ======================================================================
|
|
//
|
|
// SetupServerUtility.h
|
|
// copyright (c) 2004 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_SetupServerUtility_H
|
|
#define INCLUDED_SetupServerUtility_H
|
|
|
|
// ======================================================================
|
|
|
|
class SetupServerUtility
|
|
{
|
|
public:
|
|
|
|
static void install();
|
|
|
|
private:
|
|
SetupServerUtility();
|
|
SetupServerUtility(const SetupServerUtility &);
|
|
SetupServerUtility &operator =(const SetupServerUtility &);
|
|
};
|
|
|
|
// ======================================================================
|
|
|
|
#endif
|