Show user_id and gen

This commit is contained in:
2025-02-03 22:04:27 +01:00
parent 207e930b1c
commit 9c3d550224
3 changed files with 81 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
#include <vector>
#include "sql.hpp"
class Vapp
@@ -10,6 +10,14 @@ public:
void deinit();
private:
bool showDemoWindow;
bool showDemoWindow = false;
bool showSelection = false;
sqlite3 *db;
sqlite3_stmt *get_gen_num;
std::vector<int64_t> ids;
int64_t gens = -1;
int selected_id = -1;
bool update_gen = false;
int selected_gen = -1;
bool enableAll = true;
};