]> git.lyx.org Git - lyx.git/blob - src/factory.h
1c25480fdcd99f1eb7efee15161e7ebe72887a4c
[lyx.git] / src / factory.h
1 // -*- C++ -*-
2 /**
3  * \file factory.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FACTORY_H
13 #define FACTORY_H
14
15 class Inset;
16 class FuncRequest;
17
18 /// creates inset according to 'cmd'
19 Inset * createInset(FuncRequest const & cmd);
20
21 #endif