blob: 02bd7d882eea01be243b77a465b558ab0a7779fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef STR_EDITOR_H
#define STR_EDITOR_H
#include <raleigh/w/entry.h>
#include "editor.h"
#include "model.h"
class str_editor : public editor {
public:
str_editor(struct setting *s, const char *sname);
void set_data() override;
private:
entry e;
char **s;
};
#endif
|