Initial commit
This commit is contained in:
commit
c3dd7f832d
16 changed files with 989 additions and 0 deletions
16
include/Component.hpp
Normal file
16
include/Component.hpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#pragma once
|
||||
|
||||
#include <qframe.h>
|
||||
|
||||
namespace Ui {
|
||||
class Component;
|
||||
}
|
||||
|
||||
class Component : public QFrame
|
||||
{
|
||||
public:
|
||||
explicit Component(QWidget* parent);
|
||||
|
||||
private:
|
||||
Ui::Component* ui;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue