aboutsummaryrefslogtreecommitdiffstats
path: root/src/androidextras/android/qandroidservice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/androidextras/android/qandroidservice.cpp')
-rw-r--r--src/androidextras/android/qandroidservice.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/androidextras/android/qandroidservice.cpp b/src/androidextras/android/qandroidservice.cpp
index 227787a..5359e0f 100644
--- a/src/androidextras/android/qandroidservice.cpp
+++ b/src/androidextras/android/qandroidservice.cpp
@@ -114,7 +114,11 @@ public:
/*!
- Creates a new Android Service
+ \fn QAndroidService::QAndroidService(int &argc, char **argv)
+
+ Creates a new Android service, passing \a argc and \a argv as parameters.
+
+ //! Parameter \a flags is omitted in the documentation.
\sa QCoreApplication
*/
@@ -125,9 +129,14 @@ QAndroidService::QAndroidService(int &argc, char **argv, int flags)
}
/*!
- Creates a new Android Service
+ \fn QAndroidService::QAndroidService(int &argc, char **argv, const std::function<QAndroidBinder *(const QAndroidIntent &)> &binder)
+
+ Creates a new Android service, passing \a argc and \a argv as parameters.
+
+ \a binder is used to create a \l {QAndroidBinder}{binder} when needed.
+
+ //! Parameter \a flags is omitted in the documentation.
- \a binder is used to create a binder each when is needed
\sa QCoreApplication
*/
QAndroidService::QAndroidService(int &argc, char **argv, const std::function<QAndroidBinder *(const QAndroidIntent &)> &binder, int flags)