comparison src/index.cpp @ 0:615a15029602 default tip

first commit.
author pyon@macmini
date Sun, 10 Nov 2019 08:39:41 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:615a15029602
1 /* Filename : index.cpp
2 Last Change: 2019-11-08 金 14:22:42.
3 by Takayuki Mutoh
4 */
5 #include "index.h"
6
7 IndexFrame::IndexFrame(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style)
8 : wxFrame(parent, id, title, pos, size, style)
9 {
10 this->SetSizeHints(wxDefaultSize, wxDefaultSize);
11
12
13 this->Centre(wxBOTH);
14 }
15
16 IndexFrame::~IndexFrame()
17 {
18 }
19
20