]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
"Inter-word Space"
[lyx.git] / src / factory.h
index 65da9ce2c609f1518579c4089c10f73df6c632c1..772f28b0222024a7fb6d617f0581aabed792d7e5 100644 (file)
@@ -1,21 +1,26 @@
 // -*- 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;
 class FuncRequest;
+class LyXLex;
+class Buffer;
 
 /// creates inset according to 'cmd'
 Inset * createInset(FuncRequest const & cmd);
 
-#endif
+/// read inset from a file
+Inset * readInset(LyXLex & lex, Buffer const & buf);
 
+#endif // FACTORY_H