2
0

PolycodeView.cpp 280 B

123456789101112131415161718
  1. #include "PolycodeView.h"
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. namespace Polycode {
  5. PolycodeView::PolycodeView(const char *title) : PolycodeViewBase() {
  6. windowTitle = title;
  7. windowData = &windowTitle;
  8. }
  9. PolycodeView::~PolycodeView() {
  10. }
  11. }