~ubuntu-branches/ubuntu/trusty/libusermetrics/trusty-proposed

« back to all changes in this revision

Viewing changes to src/libusermetricsinput/MetricUpdate.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Pete Woods, Ubuntu daily release
  • Date: 2013-06-28 02:03:09 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130628020309-1kfjo0907f1xowfg
Tags: 1.0.1+13.10.20130628-0ubuntu1
[ Pete Woods ]
* Add skeleton of libusermetricsinput
* Fix copyright headers
* Fix installation of libusermetricsinput
* First version of C API
* Re-order
* Add symbols file for libusermetricsinput
* Make symbol that appears and dissapears depending on GCC version
  optional.
* Update *.symbols files to use "nice" c++ format.

[ Ubuntu daily release ]
* Automatic snapshot from revision 77

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
using namespace UserMetricsInput;
22
22
 
23
 
MetricUpdate::MetricUpdate(QObject *parent) :
24
 
                QObject(parent) {
 
23
MetricUpdate::MetricUpdate() {
25
24
}
26
25
 
27
26
MetricUpdate::~MetricUpdate() {
28
27
}
29
 
 
30
 
MetricUpdatePtr MetricUpdate::getInstance(const QString &dataSourceId,
31
 
                const QString &username) {
32
 
        return MetricUpdatePtr(new MetricUpdateImpl(dataSourceId, username));
33
 
}