blob: d74d25207ba3b25b52e47d2aecb63fec2bd1dacf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright (c) 2000-2001 Brad Hughes <bhughes@trolltech.com>
//
// Use, modification and distribution is allowed without limitation,
// warranty, or liability of any kind.
//
#ifndef __logscale_h
#define __logscale_h
class LogScale
{
public:
LogScale(int = 0, int = 0);
~LogScale();
int scale() const { return s; }
int range() const { return r; }
void setMax(int, int);
int operator[](int);
private:
int *indices;
int s, r;
};
#endif // __logscale_h
|