summaryrefslogtreecommitdiff
path: root/dldialog/src/dld_checkbutton.h
blob: d0bf33d336ef80ea3da0f33ef58a259056d38e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/******************************************************************************
**
** $Id: dld_checkbutton.h,v 1.1 1999/04/18 20:59:34 harald Exp $
**
**	This program is free software; you can redistribute it and/or
**	modify it under the terms of the GNU General Public License
**	as published by the Free Software Foundation; either version
**	2 of the License, or (at your option) any later version.
**
** by Harald Hoyer (Harald.Hoyer@hot.spotline.de) 
** for delix Computer GmbH (http://www.delix.de)
**
******************************************************************************/


/******************************************************************************
 *
 * IMPORTANT:
 * ----------
 *
 * If you modify anything of this you have to modify 
 * GUI_VERSION_INFO in configure.in following the guidelines in
 * README.developers
 *
 *****************************************************************************/


#ifndef DLD_GUI_CHECKBUTTON_H
#define DLD_GUI_CHECKBUTTON_H

#include "dld_obj.h"

/**
 * The checkbutton.
 * checkbuttons should be created using DLD_CheckList->checkbutton().
 *
 * @short Abstract interface for the checkbutton.
 * @author Harald Hoyer <Harald.Hoyer@hot.spotline.de>
 */
class DLD_CheckButton : public virtual DLD_Obj {
};
#endif