mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 02:35:20 +00:00
ea8e13cd2f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5115 a592a061-630c-0410-9148-cb99ea01b6c8
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
|
|
|