mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-16 21:10:26 +00:00
31 lines
522 B
C++
31 lines
522 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file DialogFactory.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Yuriy Skalko
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef DIALOG_FACTORY_H
|
|
#define DIALOG_FACTORY_H
|
|
|
|
#include <string>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class Dialog;
|
|
class GuiView;
|
|
|
|
|
|
Dialog * createDialog(GuiView & gv, std::string const & name);
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // DIALOG_FACTORY_H
|