This repository has been archived on 2020-05-10. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-cpp/src/easy/all.hpp

39 lines
1.4 KiB
C++
Raw Normal View History

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
#ifdef MASTODON_CPP
#include "easy.hpp"
#include "easy/account.hpp"
#include "easy/attachment.hpp"
2018-03-25 19:43:48 +02:00
#include "easy/card.hpp"
2018-03-30 18:41:28 +02:00
//#include "easy/context.hpp"
#include "easy/emoji.hpp"
2018-03-30 20:08:47 +02:00
#include "easy/instance.hpp"
2018-03-22 00:33:36 +01:00
#else
#include <mastodon-cpp/easy.hpp>
#include <mastodon-cpp/easy/account.hpp>
#include <mastodon-cpp/easy/attachment.hpp>
2018-03-30 20:08:47 +02:00
#include <mastodon-cpp/easy/instance.hpp>
2018-03-25 19:43:48 +02:00
#include <mastodon-cpp/easy/card.hpp>
2018-03-30 18:41:28 +02:00
//#include <mastodon-cpp/easy/context.hpp>
#include <mastodon-cpp/easy/emoji.hpp>
2018-03-22 00:33:36 +01:00
#endif
#endif // MASTODON_CPP_EASY_ALL_HPP