Crossfire Server, Trunk
ArtifactListPanel.h
Go to the documentation of this file.
1 /*
2  * Crossfire -- cooperative multi-player graphical RPG and adventure game
3  *
4  * Copyright (c) 2022 the Crossfire Development Team
5  *
6  * Crossfire is free software and comes with ABSOLUTELY NO WARRANTY. You are
7  * welcome to redistribute it under certain conditions. For details, please
8  * see COPYING and LICENSE.
9  *
10  * The authors can be reached via e-mail at <crossfire@metalforge.org>.
11  */
12 
13 #ifndef ARTIFACT_LIST_PANEL_H
14 #define ARTIFACT_LIST_PANEL_H
15 
16 #include <QObject>
17 #include <QtWidgets>
19 
20 #include "global.h"
21 #include "artifact.h"
22 
23 class ArtifactListPanel : public AssetTWrapperPanel<const artifactlist> {
24 Q_OBJECT
25 
26 public:
27  ArtifactListPanel(QWidget* parent);
28  virtual void updateItem() override;
29 };
30 
31 #endif // ARTIFACT_LIST_PANEL_H
global.h
artifact.h
AssetTWrapperPanel
Definition: AssetWrapperPanel.h:92
ArtifactListPanel::updateItem
virtual void updateItem() override
Definition: ArtifactListPanel.cpp:18
AssetWrapperPanel.h
ArtifactListPanel
Definition: ArtifactListPanel.h:23
ArtifactListPanel::ArtifactListPanel
ArtifactListPanel(QWidget *parent)
Definition: ArtifactListPanel.cpp:15