Correct backtrace() array size argument
[forms.git] / F / F_FLTK_UI.H
blob92f06ff23f8d8378f8bd6539266721c35f18b8da
2  /*
3   *   Copyright (C) 2007, Harbour, All rights reserved.
4   */
6 #ifndef _F_FLTK_UI_H_
7 #define _F_FLTK_UI_H_
9 #include <F_UI.H>
11 namespace F {
13 /*! The simple x11 ui implemetation
14  */
16  class F_FLTK_UI : public F_UI {
18    void run(void);
19    bool probe();
20    void initial(void);
22   public:
24    F_FLTK_UI(unsigned char ui_priority = 0) :
25      F_UI(X11_UI, ui_priority) { }
26    virtual ~F_FLTK_UI() { }
27    void shutdown() { cleaned_up_ = true; }
28    
29  };
30 } // namespace F
32 #endif