forked from pyrite-dev/milsko
25 lines
359 B
C
25 lines
359 B
C
|
|
/* $Id$ */
|
||
|
|
/*!
|
||
|
|
* %file Mw/Widget/NumberEntry.h
|
||
|
|
* %brief NumberEntry widget
|
||
|
|
*/
|
||
|
|
#ifndef __MW_WIDGET_NUMBERENTRY_H__
|
||
|
|
#define __MW_WIDGET_NUMBERENTRY_H__
|
||
|
|
|
||
|
|
#include <Mw/MachDep.h>
|
||
|
|
#include <Mw/TypeDefs.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/*!
|
||
|
|
* %brief NumberEntry widget class
|
||
|
|
*/
|
||
|
|
MWDECL MwClass MwNumberEntryClass;
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|