~alexlauni/unity/introspection-search-cleanup

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/AggregateMonitor.h

  • Committer: Alex Launi
  • Date: 2011-11-08 18:21:44 UTC
  • Revision ID: alex.launi@canonical.com-20111108182144-s92diskezfihk2g4
Convert debugging code from gchar* to std::string

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define UNITY_PERFORMANCE_AGGREGATE_MONITOR
22
22
 
23
23
#include <list>
 
24
#include <string>
24
25
#include <gio/gio.h>
25
26
 
26
27
#include "Monitor.h"
33
34
public:
34
35
  AggregateMonitor();
35
36
  ~AggregateMonitor();
36
 
  gchar* GetName ();
 
37
  std::string GetName () const;
37
38
 
38
39
protected:
39
40
  void StartMonitor();