Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / guicast / bcwindow.h
blob768a32f668e0c08a0a42ef9c55d97cbfc0c49398
1 #ifndef BCWINDOW_H
2 #define BCWINDOW_H
4 #include "bcwindowbase.h"
6 class BC_Window : public BC_WindowBase
8 public:
9 BC_Window(char *title,
10 int x,
11 int y,
12 int w,
13 int h,
14 int minw = -1,
15 int minh = -1,
16 int allow_resize = 1,
17 int private_color = 0,
18 int hide = 0,
19 int bg_color = -1,
20 char *display_name = "",
21 int group_it = 1);
22 virtual ~BC_Window();
24 private:
28 #endif