| 123456789101112131415161718 |
- #include "PolycodeView.h"
- #include <stdio.h>
- #include <stdlib.h>
- namespace Polycode {
- PolycodeView::PolycodeView(const char *title) : PolycodeViewBase() {
- windowTitle = title;
- windowData = &windowTitle;
- }
- PolycodeView::~PolycodeView() {
- }
- }
|