PolycodeView.cpp 225 B

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