mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-18 08:22:15 -07:00
add comment
This commit is contained in:
parent
00e99b3d39
commit
bec2c6f180
1 changed files with 8 additions and 0 deletions
|
|
@ -24,6 +24,14 @@ private:
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit DlgLoadDeckFromClipboard(QWidget *parent = nullptr);
|
explicit DlgLoadDeckFromClipboard(QWidget *parent = nullptr);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the loaded deck. Only call this method after this dialog window has been successfully exec'd.
|
||||||
|
*
|
||||||
|
* The returned DeckLoader is parented to this object; make sure to take ownership of the DeckLoader if you intend
|
||||||
|
* to use it, since otherwise it will get destroyed once this dlg is destroyed
|
||||||
|
* @return The DeckLoader
|
||||||
|
*/
|
||||||
DeckLoader *getDeckList() const
|
DeckLoader *getDeckList() const
|
||||||
{
|
{
|
||||||
return deckList;
|
return deckList;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue