~ubuntu-branches/ubuntu/saucy/lordsawar/saucy

« back to all changes in this revision

Viewing changes to src/timing.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese, Barry deFreese
  • Date: 2008-12-20 13:52:12 UTC
  • mfrom: (1.1.6 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20081220135212-noeb2w3y98ebo7o9
Tags: 0.1.4-1
[ Barry deFreese ]
* New upstream release.
* Move 0.0.8-2.1 changelog entry to correct point in changelog.
* Make lordsawar-data suggest lordsawar.
* Update my e-mail address.
* Add build-depends on intltool, uuid-dev, and libboost-dev.
* Don't install locales since there are no translations currently.
* Add simple man page for new lordsawar-pbm binary.
* Drop gcc4.3 patches as they have been fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include <sigc++/slot.h>
22
22
#include <sigc++/connection.h>
23
23
#include <sigc++/signal.h>
24
 
 
25
 
#include "defs.h"
 
24
#include <boost/noncopyable.hpp>
26
25
 
27
26
/** A simple timing framework 
28
27
  *
29
28
  * Main function is register_timer. The timer_registered signal hook is used
30
29
  * to do the actual work.
31
30
  */
32
 
class Timing: public noncopyable
 
31
class Timing: public boost::noncopyable
33
32
{
34
33
 public:
35
34
    static Timing &instance();