16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 12:49:18 +02:00

cameraview dummy

This commit is contained in:
milek7
2019-04-09 00:00:43 +02:00
parent 4931d6d6f8
commit fe0a4bdf1d
7 changed files with 64 additions and 2 deletions

20
widgets/cameraview.h Normal file
View File

@@ -0,0 +1,20 @@
#include "stdafx.h"
#include "uilayer.h"
#include "translation.h"
namespace ui
{
class cameraview_panel : public ui_panel
{
std::atomic_bool exit_thread = true;
std::thread workthread;
void workthread_func();
public:
cameraview_panel();
void render() override;
void render_contents() override;
};
} // namespace ui