~ubuntu-branches/ubuntu/utopic/sip-tester/utopic

« back to all changes in this revision

Viewing changes to reporttask.hpp

  • Committer: Package Import Robot
  • Author(s): Mark Purcell, Paul Belanger, Mark Purcell
  • Date: 2011-11-03 21:56:17 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20111103215617-nnxicj1oto9e8ix5
Tags: 1:3.2-1
[ Paul Belanger ]
* New Upstream Release (Closes: #623915).
* Switch to dpkg-source 3.0 (quilt) format
* Building with PCAP play.
* Switch back to Debhelper.
* debian/patches/spelling-error-in-binary: Fix lintian warning

[ Mark Purcell ]
* Drop pabs from Uploaders: at his request
* fix debhelper-overrides-need-versioned-build-depends
* fix description-synopsis-starts-with-article

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  This program is free software; you can redistribute it and/or modify
 
3
 *  it under the terms of the GNU General Public License as published by
 
4
 *  the Free Software Foundation; either version 2 of the License, or
 
5
 *  (at your option) any later version.
 
6
 *
 
7
 *  This program is distributed in the hope that it will be useful,
 
8
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
 *  GNU General Public License for more details.
 
11
 *
 
12
 *  You should have received a copy of the GNU General Public License
 
13
 *  along with this program; if not, write to the Free Software
 
14
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
 *
 
16
 *  Author : Richard GAYRAUD - 04 Nov 2003
 
17
 *           Marc LAMBERTON
 
18
 *           Olivier JACQUES
 
19
 *           Herve PELLAN
 
20
 *           David MANSUTTI
 
21
 *           Francois-Xavier Kowalski
 
22
 *           Gerard Lyonnaz
 
23
 *           From Hewlett Packard Company.
 
24
 *           F. Tarek Rogers
 
25
 *           Peter Higginson
 
26
 *           Vincent Luba
 
27
 *           Shriram Natarajan
 
28
 *           Guillaume Teissier from FTR&D
 
29
 *           Clement Chen
 
30
 *           Wolfgang Beck
 
31
 *           Charles P Wright from IBM Research
 
32
 */
 
33
 
 
34
#ifndef REPORTTASK_HPP
 
35
#define REPORTTASK_HPP
 
36
 
 
37
#include "task.hpp"
 
38
 
 
39
class screentask : public task {
 
40
public:
 
41
  unsigned int wake();
 
42
  static void report(bool last);
 
43
  static void initialize();
 
44
  bool run();
 
45
  void dump();
 
46
private:
 
47
  static class screentask *instance;
 
48
};
 
49
 
 
50
class stattask : public task {
 
51
public:
 
52
  unsigned int wake();
 
53
  static void report();
 
54
  static void initialize();
 
55
  bool run();
 
56
  void dump();
 
57
private:
 
58
  static class stattask *instance;
 
59
};
 
60
 
 
61
#endif