Atlas Game Manager
A game manager for f95 and dlsite written in c++
Loading...
Searching...
No Matches
GameList.hpp
Go to the documentation of this file.
1//
2// Created by kj16609 on 5/25/23.
3//
4
5#pragma once
6#ifndef ATLASGAMEMANAGER_GAMELIST_HPP
7#define ATLASGAMEMANAGER_GAMELIST_HPP
8
9#include <QListView>
10
13
15class GameList final : public QListView
16{
17 Q_OBJECT
18 Q_DISABLE_COPY_MOVE( GameList )
19
20 public:
21
22 explicit GameList( QWidget* parent = nullptr );
23 ~GameList() override = default;
24};
25
26#endif //ATLASGAMEMANAGER_GAMELIST_HPP
~GameList() override=default
GameList(QWidget *parent=nullptr)
Definition GameList.cpp:13