~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_stats/global_stats.h

  • Committer: Brian Aker
  • Date: 2010-06-05 00:15:57 UTC
  • mfrom: (1589.1.1 drizzle_events)
  • Revision ID: brian@gaz-20100605001557-j1k41ni5k9mis891
Merge in Barry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2010 Joseph Daly <skinny.moey@gmail.com>
 
2
 * Copyright (c) 2010, Joseph Daly <skinny.moey@gmail.com>
3
3
 * All rights reserved.
4
4
 *
5
5
 * Redistribution and use in source and binary forms, with or without
41
41
public:
42
42
  GlobalStats(); 
43
43
 
44
 
  GlobalStats(const GlobalStats &global_stats);
45
 
 
46
44
  ~GlobalStats(); 
47
45
 
48
46
  UserCommands* getUserCommands();
49
47
 
50
48
  void updateUserCommands(ScoreboardSlot *scoreboard_slot);
51
49
 
52
 
  void merge(GlobalStats *global_stats);
53
 
 
54
50
private:
55
51
  UserCommands *user_commands;
56
52
};