Documentation fixups
authorAlexander Kanavin <alexander.kanavin@nokia.com>
Fri, 3 Dec 2010 14:11:00 +0000 (16:11 +0200)
committerAlexander Kanavin <alexander.kanavin@nokia.com>
Fri, 3 Dec 2010 14:11:00 +0000 (16:11 +0200)
doxygen.cfg.in
lib/ofonointerface.h
lib/ofonomodemmanager.cpp
lib/ofonomodemmanager.h

index 8e9291c..3344938 100644 (file)
@@ -551,7 +551,7 @@ INPUT_ENCODING         = UTF-8
 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 
 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
 
-FILE_PATTERNS          = *.cpp *.h *.c *.dox
+FILE_PATTERNS          = *.h *.dox
 
 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 
 # should be searched for input files as well. Possible values are YES and NO. 
@@ -585,7 +585,7 @@ EXCLUDE_PATTERNS       = *_priv.h
 # wildcard * is used, a substring. Examples: ANamespace, AClass, 
 # AClass::ANamespace, ANamespace::*Test
 
-EXCLUDE_SYMBOLS        = 
+EXCLUDE_SYMBOLS        = OfonoModemStruct OfonoOperatorStruct OfonoInterface
 
 # The EXAMPLE_PATH tag can be used to specify one or more files or 
 # directories that contain example code fragments that are included (see 
index 650a9a8..a7e1833 100644 (file)
@@ -35,7 +35,7 @@
 /*!
  * This class implements basic access to properties of oFono interfaces.
  * It should not be instantiated directly; instead you should instantiate
- * interface-specific subclasses.
+ * interface-specific classes.
  */
 class OFONO_QT_EXPORT OfonoInterface : public QObject
 {
index f1e5e53..299decb 100644 (file)
 #include "ofonomodemmanager.h"
 #include "ofonointerface.h"
 
+struct OfonoModemStruct {
+    QDBusObjectPath path;
+    QVariantMap properties;
+};
+typedef QList<OfonoModemStruct> OfonoModemList;
+Q_DECLARE_METATYPE(OfonoModemStruct)
+Q_DECLARE_METATYPE(OfonoModemList)
+
 QDBusArgument &operator<<(QDBusArgument &argument, const OfonoModemStruct &modem)
 {
     argument.beginStructure();
index 9f7917d..f2c7e0b 100644 (file)
 #include <QStringList>
 #include "libofono-qt_global.h"
 
-struct OfonoModemStruct {
-    QDBusObjectPath path;
-    QVariantMap properties;
-};
-typedef QList<OfonoModemStruct> OfonoModemList;
-Q_DECLARE_METATYPE(OfonoModemStruct)
-Q_DECLARE_METATYPE(OfonoModemList)
-
 //! Provides access to the list of available modems and changes in that list.
 class OFONO_QT_EXPORT OfonoModemManager : public QObject {