]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
* src/frontends/qt4/qlkey.h: add AltGr as modifier key (fix bug 4026)
[lyx.git] / src / factory.h
index 65da9ce2c609f1518579c4089c10f73df6c632c1..65d33b6db0b67dbe13b7a1129ee2456976c35c38 100644 (file)
@@ -1,21 +1,33 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file factory.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author André Pönitz
  *
- *           Copyright 2002 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef FACTORY_H
 #define FACTORY_H
 
-class Inset;
+namespace lyx {
+
+class Buffer;
+class BufferView;
 class FuncRequest;
+class Inset;
+class Lexer;
+
 
 /// creates inset according to 'cmd'
-Inset * createInset(FuncRequest const & cmd);
+Inset * createInset(BufferView * bv, FuncRequest const & cmd);
+
+/// read inset from a file
+Inset * readInset(Lexer & lex, Buffer const & buf);
+
 
-#endif
+} // namespace lyx
 
+#endif // FACTORY_H