lyx_mirror/src/factory.h
Jean-Marc Lasgouttes 2660df9b99 Move Lexer to support/ directory (and lyx::support namespace)
This requires quite a bit of trivial code shuffling.
2024-04-28 12:23:13 +02:00

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