You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
608 B
28 lines
608 B
#ifndef HEADER_DynamicMeter |
|
#define HEADER_DynamicMeter |
|
|
|
#include <stdbool.h> |
|
|
|
#include "Hashtable.h" |
|
#include "Meter.h" |
|
|
|
|
|
typedef struct DynamicMeter_ { |
|
char name[32]; /* unique name, cannot contain spaces */ |
|
char* caption; |
|
char* description; |
|
unsigned int type; |
|
double maximum; |
|
} DynamicMeter; |
|
|
|
Hashtable* DynamicMeters_new(void); |
|
|
|
void DynamicMeters_delete(Hashtable* dynamics); |
|
|
|
const char* DynamicMeter_lookup(Hashtable* dynamics, unsigned int key); |
|
|
|
bool DynamicMeter_search(Hashtable* dynamics, const char* name, unsigned int* key); |
|
|
|
extern const MeterClass DynamicMeter_class; |
|
|
|
#endif
|
|
|