forked from pyrite-dev/milsko
24 lines
330 B
C
24 lines
330 B
C
|
|
/*!
|
||
|
|
* @file Mw/Widget/RadioBox.h
|
||
|
|
* @brief RadioBox widget
|
||
|
|
*/
|
||
|
|
#ifndef __MW_WIDGET_RADIOBOX_H__
|
||
|
|
#define __MW_WIDGET_RADIOBOX_H__
|
||
|
|
|
||
|
|
#include <Mw/MachDep.h>
|
||
|
|
#include <Mw/TypeDefs.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/*!
|
||
|
|
* @brief RadioBox widget class
|
||
|
|
*/
|
||
|
|
MWDECL MwClass MwRadioBoxClass;
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|