]> git.lyx.org Git - lyx.git/blobdiff - src/Chktex.h
Point fix, earlier forgotten
[lyx.git] / src / Chktex.h
index 3770d0f1f93f10b8334b6b368418c4dec7860dfe..a73478974f52c9126f1d7fa88db32bfb5829ffac 100644 (file)
@@ -1,25 +1,17 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
+/**
+ * \file Chktex.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *          Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+ * \author Asger Alstrup
  *
- *           This file is Copyright 1997
- *           Asger Alstrup
- *
- * ====================================================== 
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef CHKTEX_H
 #define CHKTEX_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "LString.h"
 
 class LyXLex;
@@ -29,14 +21,15 @@ class TeXErrors;
 class Chktex {
 public:
        /**
-         cmd = the chktex command, file = name of the (temporary) latex file,
-         path = name of the files original path.
-         */
+         @param cmd the chktex command.
+         @param file name of the (temporary) latex file.
+         @param path name of the files original path.
+       */
        Chktex(string const & cmd, string const & file,
               string const & path);
-       
+
        /** Runs chktex.
-         Returns -1 if fail, number of messages otherwise.
+           @return -1 if fail, number of messages otherwise.
          */
        int run(TeXErrors &);
 private:
@@ -48,7 +41,7 @@ private:
 
        ///
        string file;
-       
+
        ///
        string path;
 };