mastodon-cpp  0.18.2
all.hpp
1 /* This file is part of mastodon-cpp.
2  * Copyright © 2018 tastytea <tastytea@tastytea.de>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef MASTODON_CPP_EASY_ALL_HPP
18 #define MASTODON_CPP_EASY_ALL_HPP
19 
20 // If we are compiling mastodon-cpp, use another include path
21 #ifdef MASTODON_CPP
22  #include "easy/easy.hpp"
23  #include "easy/entities/account.hpp"
24  #include "easy/entities/application.hpp"
25  #include "easy/entities/attachment.hpp"
26  #include "easy/entities/card.hpp"
27  #include "easy/entities/context.hpp"
28  #include "easy/entities/emoji.hpp"
29  #include "easy/entities/instance.hpp"
30  #include "easy/entities/list.hpp"
31  #include "easy/entities/mention.hpp"
32  #include "easy/entities/notification.hpp"
33  #include "easy/entities/relationship.hpp"
34  #include "easy/entities/report.hpp"
35  #include "easy/entities/results.hpp"
36  #include "easy/entities/status.hpp"
37  #include "easy/entities/tag.hpp"
38  #include "easy/entities/pushsubscription.hpp"
39 #else
40  #include <mastodon-cpp/easy/easy.hpp>
41  #include <mastodon-cpp/easy/entities/account.hpp>
42  #include <mastodon-cpp/easy/entities/application.hpp>
43  #include <mastodon-cpp/easy/entities/attachment.hpp>
44  #include <mastodon-cpp/easy/entities/card.hpp>
45  #include <mastodon-cpp/easy/entities/context.hpp>
46  #include <mastodon-cpp/easy/entities/emoji.hpp>
47  #include <mastodon-cpp/easy/entities/instance.hpp>
48  #include <mastodon-cpp/easy/entities/list.hpp>
49  #include <mastodon-cpp/easy/entities/mention.hpp>
50  #include <mastodon-cpp/easy/entities/notification.hpp>
51  #include <mastodon-cpp/easy/entities/relationship.hpp>
52  #include <mastodon-cpp/easy/entities/report.hpp>
53  #include <mastodon-cpp/easy/entities/results.hpp>
54  #include <mastodon-cpp/easy/entities/status.hpp>
55  #include <mastodon-cpp/easy/entities/tag.hpp>
56  #include <mastodon-cpp/easy/entities/pushsubscription.hpp>
57 #endif
58 
59 #endif // MASTODON_CPP_EASY_ALL_HPP