mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-15 15:45:43 +00:00
2660df9b99
This requires quite a bit of trivial code shuffling.
33 lines
602 B
C++
33 lines
602 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file factory.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef FACTORY_H
|
|
#define FACTORY_H
|
|
|
|
namespace lyx {
|
|
|
|
class Buffer;
|
|
class FuncRequest;
|
|
class Inset;
|
|
|
|
namespace support { class Lexer; }
|
|
|
|
/// creates inset according to 'cmd'
|
|
Inset * createInset(Buffer * buf, FuncRequest const & cmd);
|
|
|
|
/// read inset from a file
|
|
Inset * readInset(support::Lexer & lex, Buffer * buf);
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // FACTORY_H
|