Blame FL/Fl_Radio_Button.H

Packit Service 9ac617
//
Packit Service 9ac617
// "$Id: Fl_Radio_Button.H 10386 2014-10-19 20:17:17Z AlbrechtS $"
Packit Service 9ac617
//
Packit Service 9ac617
// Radio button header file for the Fast Light Tool Kit (FLTK).
Packit Service 9ac617
//
Packit Service 9ac617
// Copyright 1998-2014 by Bill Spitzak and others.
Packit Service 9ac617
//
Packit Service 9ac617
// This library is free software. Distribution and use rights are outlined in
Packit Service 9ac617
// the file "COPYING" which should have been included with this file. If this
Packit Service 9ac617
// file is missing or damaged, see the license at:
Packit Service 9ac617
//
Packit Service 9ac617
//     http://www.fltk.org/COPYING.php
Packit Service 9ac617
//
Packit Service 9ac617
// Please report all bugs and problems on the following page:
Packit Service 9ac617
//
Packit Service 9ac617
//     http://www.fltk.org/str.php
Packit Service 9ac617
//
Packit Service 9ac617
Packit Service 9ac617
/* \file
Packit Service 9ac617
   Fl_Radio_Button widget . */
Packit Service 9ac617
Packit Service 9ac617
#ifndef Fl_Radio_Button_H
Packit Service 9ac617
#define Fl_Radio_Button_H
Packit Service 9ac617
Packit Service 9ac617
#include "Fl_Button.H"
Packit Service 9ac617
Packit Service 9ac617
class FL_EXPORT Fl_Radio_Button : public Fl_Button {
Packit Service 9ac617
public:
Packit Service 9ac617
  Fl_Radio_Button(int X,int Y,int W,int H,const char *L=0);
Packit Service 9ac617
};
Packit Service 9ac617
Packit Service 9ac617
#endif
Packit Service 9ac617
Packit Service 9ac617
//
Packit Service 9ac617
// End of "$Id: Fl_Radio_Button.H 10386 2014-10-19 20:17:17Z AlbrechtS $".
Packit Service 9ac617
//