~ubuntu-branches/ubuntu/intrepid/htop/intrepid

« back to all changes in this revision

Viewing changes to ClockMeter.h

  • Committer: Bazaar Package Importer
  • Author(s): Bartosz Fenski
  • Date: 2004-11-27 10:10:17 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041127101017-vwknw2ipfvxchno4
Tags: 0.5-1
* New upstream version.
  - fixes problem with wrongly displayed CPU bar (Closes: #283212)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Do not edit this file. It was automatically genarated. */
 
2
 
 
3
#ifndef HEADER_ClockMeter
 
4
#define HEADER_ClockMeter
 
5
/*
 
6
htop
 
7
(C) 2004 Hisham H. Muhammad
 
8
Released under the GNU GPL, see the COPYING file
 
9
in the source distribution for its full text.
 
10
*/
 
11
 
 
12
#include "Meter.h"
 
13
 
 
14
#include "ProcessList.h"
 
15
 
 
16
#include <curses.h>
 
17
#include <time.h>
 
18
 
 
19
#include "debug.h"
 
20
 
 
21
 
 
22
typedef struct ClockMeter_ ClockMeter;
 
23
 
 
24
struct ClockMeter_ {
 
25
   Meter super;
 
26
   ProcessList* pl;
 
27
   char clock[10];
 
28
};
 
29
 
 
30
 
 
31
ClockMeter* ClockMeter_new();
 
32
 
 
33
void ClockMeter_setValues(Meter* cast);
 
34
 
 
35
void ClockMeter_display(Object* cast, RichString* out);
 
36
 
 
37
#endif