f9039b2ae2
git-svn-id: file:///fltk/svn/fltk/trunk@2 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
19 lines
275 B
C++
19 lines
275 B
C++
// Fl_Multi_Label.H
|
|
|
|
#ifndef Fl_Multi_Label_H
|
|
#define Fl_Multi_Label_H
|
|
|
|
class Fl_Widget;
|
|
struct Fl_Menu_Item;
|
|
|
|
struct Fl_Multi_Label {
|
|
const char* labela;
|
|
const char* labelb;
|
|
uchar typea;
|
|
uchar typeb;
|
|
void label(Fl_Widget*);
|
|
void label(Fl_Menu_Item*);
|
|
};
|
|
|
|
#endif
|