]> git.lyx.org Git - lyx.git/blobdiff - src/Literate.h
citation patch from Angus
[lyx.git] / src / Literate.h
index 17827c36acbc4e0512572f0044c2452043e23f3a..73688ddd8ebe1006c183119d96987a1a1743244c 100644 (file)
@@ -1,29 +1,28 @@
 // -*- C++ -*-
 /* This file is part of
- * ======================================================
+ * ====================================================== 
  * 
- *           LyX, The Document Processor        
- *          Copyright (C) 1995 Matthias Ettrich
+ *           LyX, The Document Processor
  *
- *           This file is Copyright (C) 1996-1998
- *           Lars Gullik Bjønnes
+ *           Copyright 1995 Matthias Ettrich
+ *           Copyright 1995-2000 The LyX Team.
  *
- *======================================================
+ * ====================================================== 
  */
 
-#ifndef _LITERATE_H
-#define _LITERATE_H
+#ifndef LITERATE_H
+#define LITERATE_H
 
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-#include "LString.h"
-#include "DepTable.h"
-
+class MiniBuffer;
+       
 ///
-class Literate: public LaTeX {
+class Literate : public LaTeX {
 public:
+       ///
        Literate(string const & cmd, string const & file, string const & path,
                 string const & litfile,
                 string const & literate_cmd, string const & literate_filter, 
@@ -32,15 +31,8 @@ public:
         /// runs literate and latex
         int weave(TeXErrors &, MiniBuffer *);
 
-        ///
-        int scanLiterateLogFile(TeXErrors &);
-
         /// runs literate and build
         int build(TeXErrors &, MiniBuffer *);
-
-        ///
-        int scanBuildLogFile(TeXErrors &);
-
 private:
         ///
         string litfile;
@@ -59,3 +51,5 @@ private:
 };
 
 #endif
+
+