mirror of
https://github.com/ProjectDreamland/area51.git
synced 2024-11-01 03:01:49 +01:00
26 lines
839 B
C++
26 lines
839 B
C++
//==============================================================================
|
|
// DebugMenuPageLogging.hpp
|
|
//
|
|
// Copyright (c) 2002-2003 Inevitable Entertainment Inc. All rights reserved.
|
|
//
|
|
// This class is the specific page for logging control options.
|
|
//
|
|
//==============================================================================
|
|
|
|
#ifndef DEBUG_MENU_PAGE_LOGGING_HPP
|
|
#define DEBUG_MENU_PAGE_LOGGING_HPP
|
|
|
|
//==============================================================================
|
|
|
|
class debug_menu_page_logging : public debug_menu_page
|
|
{
|
|
public:
|
|
debug_menu_page_logging ( );
|
|
virtual ~debug_menu_page_logging ( ) { };
|
|
|
|
protected:
|
|
};
|
|
|
|
//==============================================================================
|
|
|
|
#endif // DEBUG_MENU_PAGE_LOGGING_HPP
|