PolycodeView.cpp 286 B

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