mirror of
https://github.com/CDAGaming/blizzget
synced 2026-02-20 07:41:51 +03:00
21 lines
423 B
C++
21 lines
423 B
C++
#pragma once
|
|
|
|
#include "wizard.h"
|
|
|
|
class BuildPage : public Page {
|
|
public:
|
|
BuildPage(Wizard* wizard);
|
|
|
|
bool hasPrev() const { return true; }
|
|
Page* getPrev();
|
|
bool hasNext() const { return true; }
|
|
Page* getNext();
|
|
|
|
private:
|
|
ComboFrame* build_;
|
|
EditFrame* tags_;
|
|
void init();
|
|
void showInfo(std::string const& build);
|
|
LRESULT onMessage(uint32 message, WPARAM wParam, LPARAM lParam);
|
|
};
|