blob: 7f34285023509a2a222fa363b1124999bee1bdff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#if !defined(HISTORYSTATS_GUARD_MAIN_H)
#define HISTORYSTATS_GUARD_MAIN_H
#include "stdafx.h"
#include "_consts.h"
#include "settingsserializer.h"
#include "statistic.h"
extern HINSTANCE g_hInst;
extern PLUGININFOEX g_pluginInfoEx;
extern SettingsSerializer* g_pSettings;
extern bool g_bMainMenuExists;
extern bool g_bContactMenuExists;
extern bool g_bExcludeLock;
extern bool g_bConfigureLock;
void AddMainMenu();
void AddContactMenu();
// shortcut for filling std::vector
template <typename T_>
std::vector<T_>& operator <<(std::vector<T_>& container, const T_& value)
{
container.push_back(value);
return container;
}
#endif // HISTORYSTATS_GUARD_MAIN_H
|