2009-01-19 19:08:42 +00:00
|
|
|
/**
|
|
|
|
* This file is part of the common libary
|
|
|
|
* @file confirm.h
|
|
|
|
* @see common.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __INCLUDE__CONFIRM_H__
|
|
|
|
#define __INCLUDE__CONFIRM_H__ 1
|
|
|
|
|
|
|
|
|
2009-11-23 20:18:47 +00:00
|
|
|
void DisplayError( wxWindow* parent, const wxString& msg,
|
|
|
|
int displaytime = 0 );
|
|
|
|
void DisplayInfoMessage( wxWindow* parent, const wxString& msg,
|
|
|
|
int displaytime = 0 );
|
2009-01-19 19:08:42 +00:00
|
|
|
|
|
|
|
bool IsOK( wxWindow* parent, const wxString& msg );
|
|
|
|
|
|
|
|
#endif /* __INCLUDE__CONFIRM_H__ */
|