]> git.lyx.org Git - lyx.git/blobdiff - src/Literate.h
Small fix.
[lyx.git] / src / Literate.h
index 17827c36acbc4e0512572f0044c2452043e23f3a..9027db10d03c2f2e41ccf793f28ea4e1a432d400 100644 (file)
@@ -1,28 +1,26 @@
 // -*- 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,
@@ -32,15 +30,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 +50,5 @@ private:
 };
 
 #endif
+
+