forked from pyrite-dev/milsko
25 lines
357 B
C
25 lines
357 B
C
/*!
|
|
* @file Mw/Widget/SubWindow.h
|
|
* @brief SubWindow widget
|
|
*/
|
|
#ifndef __MW_WIDGET_SUBWINDOW_H__
|
|
#define __MW_WIDGET_SUBWINDOW_H__
|
|
|
|
#include <Mw/MachDep.h>
|
|
#include <Mw/TypeDefs.h>
|
|
#include <Mw/Core.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*!
|
|
* @brief SubWindow widget class
|
|
*/
|
|
MWDECL MwClass MwSubWindowClass;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|