summaryrefslogtreecommitdiffstats
path: root/src/interfaceframework/qifserviceinterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaceframework/qifserviceinterface.cpp')
-rw-r--r--src/interfaceframework/qifserviceinterface.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/interfaceframework/qifserviceinterface.cpp b/src/interfaceframework/qifserviceinterface.cpp
index f2dc1d9c..31fa9fe3 100644
--- a/src/interfaceframework/qifserviceinterface.cpp
+++ b/src/interfaceframework/qifserviceinterface.cpp
@@ -39,16 +39,30 @@ QIfServiceInterface::~QIfServiceInterface()
{
}
+/*!
+ Returns the unique ID for the service object instance.
+ \since 6.5
+*/
QString QIfServiceInterface::id() const
{
return QString();
}
+/*!
+ Returns the configuration ID for the service object instance.
+ \since 6.5
+
+ \sa QIfConfiguration
+*/
QString QIfServiceInterface::configurationId() const
{
return QString();
}
+/*!
+ Updates the service settings with the given \a settings.
+ \since 6.5
+*/
void QIfServiceInterface::updateServiceSettings(const QVariantMap &settings)
{
Q_UNUSED(settings);