From: Alexander Kanavin Date: Fri, 3 Dec 2010 14:11:00 +0000 (+0200) Subject: Documentation fixups X-Git-Tag: 0.1.0~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=be7a4168de40970809a7243f2e27a373ea9a9921;p=profile%2Fivi%2Fofono-qt.git Documentation fixups --- diff --git a/doxygen.cfg.in b/doxygen.cfg.in index 8e9291c..3344938 100644 --- a/doxygen.cfg.in +++ b/doxygen.cfg.in @@ -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 diff --git a/lib/ofonointerface.h b/lib/ofonointerface.h index 650a9a8..a7e1833 100644 --- a/lib/ofonointerface.h +++ b/lib/ofonointerface.h @@ -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 { diff --git a/lib/ofonomodemmanager.cpp b/lib/ofonomodemmanager.cpp index f1e5e53..299decb 100644 --- a/lib/ofonomodemmanager.cpp +++ b/lib/ofonomodemmanager.cpp @@ -27,6 +27,14 @@ #include "ofonomodemmanager.h" #include "ofonointerface.h" +struct OfonoModemStruct { + QDBusObjectPath path; + QVariantMap properties; +}; +typedef QList OfonoModemList; +Q_DECLARE_METATYPE(OfonoModemStruct) +Q_DECLARE_METATYPE(OfonoModemList) + QDBusArgument &operator<<(QDBusArgument &argument, const OfonoModemStruct &modem) { argument.beginStructure(); diff --git a/lib/ofonomodemmanager.h b/lib/ofonomodemmanager.h index 9f7917d..f2c7e0b 100644 --- a/lib/ofonomodemmanager.h +++ b/lib/ofonomodemmanager.h @@ -30,14 +30,6 @@ #include #include "libofono-qt_global.h" -struct OfonoModemStruct { - QDBusObjectPath path; - QVariantMap properties; -}; -typedef QList 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 {