lyx_mirror/src/factory.h
André Pönitz ea8e13cd2f the factory stuff
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5115 a592a061-630c-0410-9148-cb99ea01b6c8
2002-08-27 10:14:56 +00:00

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