edit_birthday_box.h 474 B

1234567891011121314151617181920212223
  1. /*
  2. This file is part of Telegram Desktop,
  3. the official desktop application for the Telegram messaging service.
  4. For license and copyright information please follow this link:
  5. https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
  6. */
  7. #pragma once
  8. namespace Data {
  9. class Birthday;
  10. } // namespace Data
  11. namespace Ui {
  12. class GenericBox;
  13. void EditBirthdayBox(
  14. not_null<Ui::GenericBox*> box,
  15. Data::Birthday current,
  16. Fn<void(Data::Birthday)> save);
  17. } // namespace Ui