wallet/samples/config/app.h

27 lines
947 B
C
Raw Normal View History

#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;
};