ac477c3295
2008/04/01 15:13:03 thb 1.3.1018.1: #i85898# Stripping all external header guards
25 lines
433 B
C++
25 lines
433 B
C++
#include <vcl/dialog.hxx>
|
|
#include <vcl/fixed.hxx>
|
|
#ifndef _SV_BUTTON_HXX
|
|
#include <vcl/button.hxx>
|
|
#endif
|
|
|
|
namespace desktop
|
|
{
|
|
void displayCmdlineHelp( void );
|
|
|
|
class CmdlineHelpDialog : public ModalDialog
|
|
{
|
|
public:
|
|
CmdlineHelpDialog ( void );
|
|
|
|
FixedText m_ftHead;
|
|
FixedText m_ftLeft;
|
|
FixedText m_ftRight;
|
|
FixedText m_ftBottom;
|
|
OKButton m_btOk;
|
|
};
|
|
|
|
|
|
|
|
}
|