fix small bug(wildcard), and change some comments
[mdictionary] / src / plugins / stardict / UncompressedReader.h
index af9014f..d247cdb 100644 (file)
     Copyright 2010 Comarch S.A.
 
 *******************************************************************************/
-
-//Created by Mateusz Półrola
+/*!
+    \file UncompressedReader.h
+    \author Mateusz Półrola <mateusz.polrola@comarch.pl>
+ */
 
 #ifndef UNCOMPRESSEDREADER_H
 #define UNCOMPRESSEDREADER_H
@@ -32,7 +34,8 @@
 
 
 /*!
-  Class implementing StarDictReader interface and handling rading from uncompressed files
+  Class implementing StarDictReader interface and handling
+  rading from uncompressed files
 */
 class UncompressedReader : public StarDictReader
 {
@@ -40,14 +43,10 @@ class UncompressedReader : public StarDictReader
 public:
     UncompressedReader(QObject *parent = 0);
 
-    /*!
-        Creates new reader and open file with passed filename
-    */
+    //! Creates new reader and open file with passed filename
     UncompressedReader(QString filename, QObject *parent = 0);
 
-    /*!
-        Destructs object and closing file
-    */
+    //! Destructs object and closing file
     ~UncompressedReader();
 
     /*!
@@ -76,10 +75,7 @@ public:
     */
     QString readKeyword();
 
-
-    /*!
-        Closing file;
-    */
+    //! Closing file;
     void close();
 
 protected:
@@ -89,9 +85,7 @@ protected:
     */
     bool open(QString file);
 
-    /*!
-        Reads single char from compressed.
-    */
+    //! Reads single char from compressed.
     QChar readChar();
 
 private: