mirror of https://github.com/procxx/kepka.git
Drop some cyclic #include's of structs.h
It should reduce compile times. Related to #174.
This commit is contained in:
parent
94d2d07878
commit
7a88eeda6a
|
@ -25,6 +25,9 @@
|
|||
|
||||
#include "data/data_types.h"
|
||||
|
||||
class PhotoData;
|
||||
class DocumentData;
|
||||
|
||||
struct GameData {
|
||||
GameData(const GameId &id)
|
||||
: id(id) {}
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
#include <qglobal.h>
|
||||
#include <QPair>
|
||||
#include "core/utils.h" // TimeMs and stuff
|
||||
|
||||
using VideoId = quint64;
|
||||
using AudioId = quint64;
|
||||
|
|
|
@ -28,6 +28,10 @@
|
|||
#include "dialogs/dialogs_common.h" // For Dialogs::Mode
|
||||
#include "ui/animation.h" // For BasicAnimation
|
||||
#include "ui/effects/send_action_animations.h" // For SendActionAnimation
|
||||
#include "ui/text/text.h"
|
||||
#include "data/data_photo.h"
|
||||
#include "data/data_game.h"
|
||||
#include "structs.h"
|
||||
|
||||
void HistoryInit();
|
||||
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
|
||||
#include "base/flags.h"
|
||||
#include "base/runtime_composer.h"
|
||||
#include "core/basic_types.h"
|
||||
#include "core/click_handler.h"
|
||||
#include "history/history.h"
|
||||
#include "structs.h"
|
||||
#include "ui/animation.h"
|
||||
#include "ui/text/text.h"
|
||||
|
||||
|
@ -40,6 +40,7 @@ struct RippleAnimation;
|
|||
} // namespace style
|
||||
|
||||
class HistoryItem;
|
||||
class History;
|
||||
|
||||
class HistoryElement {
|
||||
public:
|
||||
|
|
|
@ -22,7 +22,9 @@
|
|||
//
|
||||
#include "inline_bots/inline_bot_result.h"
|
||||
|
||||
#include "app.h"
|
||||
#include "core/file_utilities.h"
|
||||
#include "data/data_game.h"
|
||||
#include "inline_bots/inline_bot_layout_item.h"
|
||||
#include "inline_bots/inline_bot_send_data.h"
|
||||
#include "mainwidget.h"
|
||||
|
@ -188,7 +190,7 @@ std::unique_ptr<Result> Result::create(quint64 queryId, const MTPBotInlineResult
|
|||
}
|
||||
} break;
|
||||
|
||||
default: { badAttachment = true; } break;
|
||||
default: badAttachment = true; break;
|
||||
}
|
||||
|
||||
if (badAttachment || !result->sendData || !result->sendData->isValid()) {
|
||||
|
|
|
@ -23,11 +23,17 @@
|
|||
#pragma once
|
||||
|
||||
#include "core/basic_types.h"
|
||||
#include "structs.h"
|
||||
#include "data/data_types.h"
|
||||
#include "ui/images.h"
|
||||
#include "scheme.h"
|
||||
|
||||
class FileLoader;
|
||||
class History;
|
||||
class LocationCoords;
|
||||
class DocumentData;
|
||||
class PhotoData;
|
||||
|
||||
struct GameData;
|
||||
|
||||
namespace InlineBots {
|
||||
|
||||
|
|
|
@ -20,8 +20,9 @@
|
|||
// Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||
// Copyright (c) 2017- Kepka Contributors, https://github.com/procxx
|
||||
//
|
||||
#include "inline_bots/inline_bot_send_data.h"
|
||||
#include "app.h"
|
||||
#include "data/data_game.h"
|
||||
#include "inline_bots/inline_bot_send_data.h"
|
||||
#include "inline_bots/inline_bot_result.h"
|
||||
#include "lang/lang_keys.h"
|
||||
#include "storage/localstorage.h"
|
||||
|
|
|
@ -23,10 +23,11 @@
|
|||
#pragma once
|
||||
|
||||
#include "core/basic_types.h"
|
||||
#include "data/data_types.h"
|
||||
#include "history/history_location_manager.h"
|
||||
#include "mtproto/type_utils.h"
|
||||
#include "structs.h"
|
||||
|
||||
struct GameData;
|
||||
class History;
|
||||
namespace InlineBots {
|
||||
|
||||
|
|
|
@ -22,7 +22,8 @@
|
|||
//
|
||||
#pragma once
|
||||
|
||||
#include "structs.h"
|
||||
#include "data/data_types.h"
|
||||
#include "ui/twidget.h"
|
||||
|
||||
namespace Ui {
|
||||
|
||||
|
|
Loading…
Reference in New Issue