2018-03-22 00:33:36 +01:00
|
|
|
/* This file is part of mastodon-cpp.
|
|
|
|
* Copyright © 2018 tastytea <tastytea@tastytea.de>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MASTODON_CPP_EASY_ALL_HPP
|
|
|
|
#define MASTODON_CPP_EASY_ALL_HPP
|
|
|
|
|
2018-03-31 00:12:34 +02:00
|
|
|
// If we are compiling mastodon-cpp, use another include path
|
2018-03-22 00:33:36 +01:00
|
|
|
#ifdef MASTODON_CPP
|
2018-04-01 03:36:11 +02:00
|
|
|
#include "easy/easy.hpp"
|
2018-04-03 00:13:21 +02:00
|
|
|
#include "easy/entities/account.hpp"
|
|
|
|
#include "easy/entities/application.hpp"
|
|
|
|
#include "easy/entities/attachment.hpp"
|
|
|
|
#include "easy/entities/card.hpp"
|
|
|
|
#include "easy/entities/context.hpp"
|
|
|
|
#include "easy/entities/emoji.hpp"
|
|
|
|
#include "easy/entities/instance.hpp"
|
|
|
|
#include "easy/entities/list.hpp"
|
|
|
|
#include "easy/entities/mention.hpp"
|
|
|
|
#include "easy/entities/notification.hpp"
|
|
|
|
#include "easy/entities/relationship.hpp"
|
|
|
|
#include "easy/entities/report.hpp"
|
|
|
|
#include "easy/entities/results.hpp"
|
|
|
|
#include "easy/entities/status.hpp"
|
|
|
|
#include "easy/entities/tag.hpp"
|
2018-05-23 20:21:41 +02:00
|
|
|
#include "easy/entities/pushsubscription.hpp"
|
2018-03-22 00:33:36 +01:00
|
|
|
#else
|
2018-04-01 03:36:11 +02:00
|
|
|
#include <mastodon-cpp/easy/easy.hpp>
|
2018-04-11 16:06:32 +02:00
|
|
|
#include <mastodon-cpp/easy/entities/account.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/application.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/attachment.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/card.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/context.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/emoji.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/instance.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/list.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/mention.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/notification.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/relationship.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/report.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/results.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/status.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/tag.hpp>
|
2018-05-23 20:21:41 +02:00
|
|
|
#include <mastodon-cpp/easy/entities/pushsubscription.hpp>
|
2018-03-22 00:33:36 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // MASTODON_CPP_EASY_ALL_HPP
|