mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
29 lines
516 B
C++
29 lines
516 B
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#pragma once
|
|
|
|
#include "base/flat_map.h"
|
|
|
|
namespace Dialogs {
|
|
|
|
class Row;
|
|
using RowsByLetter = base::flat_map<QChar, Row*>;
|
|
|
|
enum class SortMode {
|
|
Date = 0x00,
|
|
Name = 0x01,
|
|
Add = 0x02,
|
|
};
|
|
|
|
enum class Mode {
|
|
All = 0x00,
|
|
Important = 0x01,
|
|
};
|
|
|
|
} // namespace Dialogs
|