]> git.lyx.org Git - lyx.git/blob - src/factory.h
remove noload/don't typeset
[lyx.git] / src / factory.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  *
5  *           LyX, The Document Processor
6  *
7  *           Copyright 2002 The LyX Team.
8  *
9  * ====================================================== */
10
11 #ifndef FACTORY_H
12 #define FACTORY_H
13
14 class Inset;
15 class FuncRequest;
16
17 /// creates inset according to 'cmd'
18 Inset * createInset(FuncRequest const & cmd);
19
20 #endif
21