mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
19 lines
333 B
C++
19 lines
333 B
C++
#pragma once
|
|
|
|
#include "search/reverse_geocoder.hpp"
|
|
|
|
#include <QtWidgets/QDialog>
|
|
|
|
namespace place_page
|
|
{
|
|
class Info;
|
|
}
|
|
|
|
class PlacePageDialogUser : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
PlacePageDialogUser(QWidget * parent, place_page::Info const & info,
|
|
search::ReverseGeocoder::Address const & address);
|
|
};
|