mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-03 04:19:20 -04:00
30 lines
687 B
C++
Executable File
30 lines
687 B
C++
Executable File
// ======================================================================
|
|
//
|
|
// ConfigSharedDebugLinux.h
|
|
// Copyright 2002 Sony Online Entertainment, Inc.
|
|
// All Rights Reserved.
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_ConfigSharedDebugLinux_H
|
|
#define INCLUDED_ConfigSharedDebugLinux_H
|
|
|
|
//===================================================================
|
|
|
|
class ConfigSharedDebugLinux
|
|
{
|
|
public:
|
|
|
|
static void install();
|
|
|
|
static bool getUseTty();
|
|
static char const *getDebugMonitorOutputFilename();
|
|
static bool getLogTtySetup();
|
|
|
|
};
|
|
|
|
//===================================================================
|
|
|
|
#endif
|
|
|