File: LiteWindow.h

package info (click to toggle)
colmap 3.5-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 20,564 kB
  • sloc: ansic: 170,595; cpp: 95,339; python: 2,335; makefile: 183; sh: 51
file content (13 lines) | stat: -rwxr-xr-x 252 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef LITE_WINDOW_H
#define LITE_WINDOW_H

class LiteWindow {
 public:
  LiteWindow() {}
  virtual ~LiteWindow() {}
  int IsValid() { return 0; }
  void MakeCurrent() {}
  void Create(int x = -1, int y = -1, const char* display = NULL) {}
};

#endif