mirror of
https://github.com/rene-dev/stmbl.git
synced 2024-12-25 18:12:17 +00:00
27 lines
490 B
C++
27 lines
490 B
C++
|
#pragma once
|
||
|
|
||
|
#include <wx/wx.h>
|
||
|
#include <wx/splitter.h>
|
||
|
#include <wx/listctrl.h>
|
||
|
#include <wx/bitmap.h>
|
||
|
#include <wx/artprov.h>
|
||
|
#include <wx/stattext.h>
|
||
|
#include <wx/textctrl.h>
|
||
|
#include <wx/choice.h>
|
||
|
#include <wx/arrstr.h>
|
||
|
#include <wx/button.h>
|
||
|
#include <wx/config.h>
|
||
|
#include <wx/slider.h>
|
||
|
#include <math.h>
|
||
|
#include <vector>
|
||
|
#include <libserialport.h>
|
||
|
#include "dqdraw.hpp"
|
||
|
|
||
|
class dqFrame : public wxFrame
|
||
|
{
|
||
|
public:
|
||
|
dqFrame(const wxString& title);
|
||
|
private:
|
||
|
dqDraw *dqdraw;
|
||
|
};
|