libusermetrics
MetricManagerUpdateToday.cpp

A simple example of a metric that doesn't worry about updating history, and just updates a single value in response to an action. This is for apps that cannot simply increment by a fixed amount.

#include <QtCore/QCoreApplication>
using namespace UserMetricsInput;
int main(int argc, char *argv[]) {
QCoreApplication application(argc, argv);
// We start with a manager object
MetricManagerPtr manager(MetricManager::getInstance());
// You can hold onto this shared pointer for as long as you want
MetricPtr metric(
manager->add(
MetricParameters("photo-app-photos").formatString(
"<b>%1</b> photos taken today").emptyDataString(
"No photos taken today").textDomain(APP_ID)));
// Get the data from somewhere
PhotoLibrary photoLibrary;
// The default parameters for increment cause it to update
// the current user.
metric->update(photoLibrary.size());
return 0;
}
Definition MetricManager.h:41
The user metrics input library namespace.
Definition Metric.h:29
QScopedPointer< MetricManager > MetricManagerPtr
Shared pointer for the MetricManager.
Definition MetricManager.h:39
QSharedPointer< Metric > MetricPtr
Definition Metric.h:36