~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_stats/global_stats.h

  • Committer: Monty Taylor
  • Date: 2010-06-16 05:08:44 UTC
  • mfrom: (1616.2.2 fix_global_stats)
  • Revision ID: mordred@inaugust.com-20100616050844-q992zwwnjxl6u6tn
Merged Joe Daly from lp:~skinny.moey/drizzle/fix_global_stats

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
public:
42
42
  GlobalStats(); 
43
43
 
 
44
  GlobalStats(const GlobalStats &global_stats);
 
45
 
44
46
  ~GlobalStats(); 
45
47
 
46
48
  UserCommands* getUserCommands();
47
49
 
48
50
  void updateUserCommands(ScoreboardSlot *scoreboard_slot);
49
51
 
 
52
  void merge(GlobalStats *global_stats);
 
53
 
50
54
private:
51
55
  UserCommands *user_commands;
52
56
};