mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 23:30:04 +00:00
37 lines
512 B
C++
37 lines
512 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui
|
|
{
|
|
class CountyDialog;
|
|
}
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace ui
|
|
{
|
|
class CountyDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY_MOVE(CountyDialog)
|
|
|
|
public:
|
|
explicit CountyDialog(QWidget* parent = nullptr);
|
|
~CountyDialog();
|
|
|
|
std::string county_fips_id();
|
|
|
|
void SelectState(const std::string& state);
|
|
|
|
private:
|
|
class Impl;
|
|
std::unique_ptr<Impl> p;
|
|
Ui::CountyDialog* ui;
|
|
};
|
|
|
|
} // namespace ui
|
|
} // namespace qt
|
|
} // namespace scwx
|