22 lines
541 B
C
22 lines
541 B
C
|
/***************************************************************
|
||
|
* Name: PlottWareControlApp.h
|
||
|
* Purpose: Defines Application Class
|
||
|
* Author: Fandly Gergo (fandlygergo@gmail.hu)
|
||
|
* Created: 2017-11-25
|
||
|
* Copyright: Fandly Gergo (systemtest.tk)
|
||
|
* License:
|
||
|
**************************************************************/
|
||
|
|
||
|
#ifndef PLOTTWARECONTROLAPP_H
|
||
|
#define PLOTTWARECONTROLAPP_H
|
||
|
|
||
|
#include <wx/app.h>
|
||
|
|
||
|
class PlottWareControlApp : public wxApp
|
||
|
{
|
||
|
public:
|
||
|
virtual bool OnInit();
|
||
|
};
|
||
|
|
||
|
#endif // PLOTTWARECONTROLAPP_H
|