Merge branch 'stardict' of ssh://drop.maemo.org/git/mdictionary into stardict
[mdictionary] / src / plugins / stardict / CompressedReader.h
index fbb45fd..0b0c68e 100644 (file)
     Copyright 2010 Comarch S.A.
 
 *******************************************************************************/
-
-//Created by Mateusz Półrola
+/*!
+    \file CompressedReader.cpp
+    \author Mateusz Półrola
+*/
 
 #ifndef COMPRESSEDREADER_H
 #define COMPRESSEDREADER_H
@@ -39,13 +41,11 @@ class CompressedReader : public StarDictReader
     Q_OBJECT
 public:
     CompressedReader(QObject *parent = 0);
-    /*!
-        Creates new compressed reader and open file with passed filename
-    */
+
+    //! Creates new compressed reader and open file with passed filename
     CompressedReader(QString filename, QObject *parent = 0);
-    /*!
-        Destructs object and closing file
-    */
+
+    //! Destructs object and closing file
     ~CompressedReader();
 
     /*!
@@ -75,9 +75,7 @@ public:
     QString readKeyword();
 
 
-    /*!
-        Closing file;
-    */
+    //! Closing file;
     void close();
 
 protected:
@@ -87,9 +85,7 @@ protected:
     */
     bool open(QString file);
 
-    /*!
-        Reads single char from compressed.
-    */
+    //! Reads single char from compressed.
     QChar readChar();
 
 private: