fltk 1.3.0rc3
About: FLTK (Fast Light Tool Kit) is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. Release candidate.
  SfR Fresh Dox: fltk-1.3.0rc3-source.tar.gz ("inofficial" and yet experimental doxygen-generated source code documentation)  

Fl_End Class Reference

#include <Fl_Group.H>

List of all members.

Public Member Functions

 Fl_End ()

Detailed Description

This is a dummy class that allows you to end a Fl_Group in a constructor list of a class:

   class MyClass {
   Fl_Group group;
   Fl_Button button_in_group;
   Fl_End end;
   Fl_Button button_outside_group;
   MyClass();
  };
  MyClass::MyClass() :
   group(10,10,100,100),
   button_in_group(20,20,60,30),
   end(),
   button_outside_group(10,120,60,30)
  {} 

Definition at line 220 of file Fl_Group.H.


Constructor & Destructor Documentation

Fl_End::Fl_End ( ) [inline]

All it does is calling Fl_Group::current()->end()

Definition at line 223 of file Fl_Group.H.

References Fl_Group::current(), and Fl_Group::end().


The documentation for this class was generated from the following file: