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.
26 lines
471 B
26 lines
471 B
/* Do not edit this file. It was automatically generated. */ |
|
|
|
#ifndef HEADER_MetersPanel |
|
#define HEADER_MetersPanel |
|
|
|
|
|
#include "Panel.h" |
|
#include "Settings.h" |
|
#include "ScreenManager.h" |
|
|
|
#include "debug.h" |
|
#include <assert.h> |
|
|
|
|
|
typedef struct MetersPanel_ { |
|
Panel super; |
|
|
|
Settings* settings; |
|
Vector* meters; |
|
ScreenManager* scr; |
|
} MetersPanel; |
|
|
|
|
|
MetersPanel* MetersPanel_new(Settings* settings, const char* header, Vector* meters, ScreenManager* scr); |
|
|
|
#endif
|
|
|