20 lines
349 B
C++
20 lines
349 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "search/reverse_geocoder.hpp"
|
||
|
|
|
||
|
|
#include <QtWidgets/QDialog>
|
||
|
|
|
||
|
|
namespace place_page
|
||
|
|
{
|
||
|
|
class Info;
|
||
|
|
}
|
||
|
|
|
||
|
|
class PlacePageDialogDeveloper : public QDialog
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
PlacePageDialogDeveloper(QWidget * parent, place_page::Info const & info,
|
||
|
|
search::ReverseGeocoder::Address const & address);
|
||
|
|
};
|