mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
f7ba7c8e9f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
16 lines
518 B
C++
16 lines
518 B
C++
/**
|
|
* \file Alert_pimpl.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
*/
|
|
|
|
#include "debug.h"
|
|
|
|
// GUI-specific implementations
|
|
void alert_pimpl(string const & s1, string const & s2, string const & s3);
|
|
bool askQuestion_pimpl(string const & s1, string const & s2, string const & s3);
|
|
int askConfirmation_pimpl(string const & s1, string const & s2, string const & s3);
|
|
std::pair<bool, string> const askForText_pimpl(string const & msg, string const & dflt);
|