summaryrefslogtreecommitdiffstats
path: root/src/yuzu/applets/software_keyboard.cpp
blob: da0fed774eb43832d4e5e807bb71f099e8f71125 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "yuzu/applets/software_keyboard.h"
#include "yuzu/main.h"

QtSoftwareKeyboardValidator::QtSoftwareKeyboardValidator() {}

QValidator::State QtSoftwareKeyboardValidator::validate(QString& input, int& pos) const {}

QtSoftwareKeyboardDialog::QtSoftwareKeyboardDialog(QWidget* parent) : QDialog(parent) {}

QtSoftwareKeyboardDialog::~QtSoftwareKeyboardDialog() = default;

QtSoftwareKeyboard::QtSoftwareKeyboard(GMainWindow& main_window) {}

QtSoftwareKeyboard::~QtSoftwareKeyboard() = default;