yum-archive/TaSTT-Whisper

High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model

git clone https://git.yummers.dev/yum-archive/TaSTT-Whisper

KonstantinSource codes8c4603c

master
263 B18 linesraw
1#pragma once
2#include "../AppState.h"
3
4class TranslateCheckbox
5{
6	HWND m_hWnd = nullptr;
7public:
8	operator HWND() const
9	{
10		return m_hWnd;
11	}
12
13	void initialize( HWND owner, int idc, AppState& state );
14
15	bool checked();
16
17	void saveSelection( AppState& state );
18};