aboutsummaryrefslogtreecommitdiff
path: root/src/xembed.hh
blob: 72fbf88781aa194fb40f66986eeb7cd5bbba7efd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __XEMBED_HH__
#define __XEMBED_HH__

#include <fltk/Window.h>

#include "d_size.h"

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

#endif