forked from cheng/wallet
27 lines
947 B
C
27 lines
947 B
C
|
#pragma once
|
|||
|
///////////////////////////////////////////////////////////////////////////////
|
|||
|
// Name: conftest.cpp
|
|||
|
// Purpose: demo of wxConfig and related classes
|
|||
|
// Author: Vadim Zeitlin
|
|||
|
// Modified by:
|
|||
|
// Created: 03.08.98
|
|||
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|||
|
// Licence: wxWindows licence
|
|||
|
///////////////////////////////////////////////////////////////////////////////
|
|||
|
|
|||
|
// ============================================================================
|
|||
|
// declarations
|
|||
|
// ============================================================================
|
|||
|
#include "stdafx.h"
|
|||
|
// ----------------------------------------------------------------------------
|
|||
|
// classes
|
|||
|
// ----------------------------------------------------------------------------
|
|||
|
|
|||
|
class MyApp : public wxApp
|
|||
|
{
|
|||
|
public:
|
|||
|
// implement base class virtuals
|
|||
|
virtual bool OnInit() wxOVERRIDE;
|
|||
|
virtual int OnExit() wxOVERRIDE;
|
|||
|
};
|