aboutsummaryrefslogtreecommitdiff
path: root/src/xembed.hh
blob: 06bd599c60908ec27cd0149b358dfddcb4ad6f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __XIDWINDOW_HH__
#define __XIDWINDOW_HH__

#include <fltk/Window.h>

class Xembed : public fltk::Window {
   public:
      Xembed(int _w, int _h) : fltk::Window(_w, _h) {};
      void embed(unsigned long xid);
};

#endif