mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 19:59:46 +00:00
22 lines
413 B
C
22 lines
413 B
C
|
// -*- C++ -*-
|
||
|
/* This file is part of
|
||
|
* ======================================================
|
||
|
*
|
||
|
* LyX, The Document Processor
|
||
|
*
|
||
|
* Copyright 2002 The LyX Team.
|
||
|
*
|
||
|
* ====================================================== */
|
||
|
|
||
|
#ifndef FACTORY_H
|
||
|
#define FACTORY_H
|
||
|
|
||
|
class Inset;
|
||
|
class FuncRequest;
|
||
|
|
||
|
/// creates inset according to 'cmd'
|
||
|
Inset * createInset(FuncRequest const & cmd);
|
||
|
|
||
|
#endif
|
||
|
|