/* This file is part of mastodonpp. * Copyright © 2020 tastytea * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ #ifndef MASTODONPP_HPP #define MASTODONPP_HPP #include "answer.hpp" #include "api.hpp" #include "connection.hpp" #include "exceptions.hpp" #include "instance.hpp" /*! * @headerfile mastodonpp.hpp mastodonpp/mastodonpp.hpp * * @mainpage mastodonpp Reference * * @section using Using the library * * Include mastodonpp.hpp, which then includes all other headers. * * @code * #include * @endcode * * Use it in your CMake project like this: * * @code * find_package(mastodonpp REQUIRED CONFIG) * target_link_libraries(MyProject mastodonpp::mastodonpp) * @endcode * * Or compile your code with `g++ $(pkg-config --cflags --libs mastodonpp)`. * * @subsection example Example * * @code * #include * #include * * int main() * { * mastodonpp::Instance instance{"example.com", ""}; * std::cout << "Maximum characters per post: " * << instance.get_max_chars() << std::endl; * * mastodonpp::Connection connection{instance}; * * auto answer{connection.get(mastodonpp::API::v1::instance)}; * if (answer) * { * std::cout << answer << std::endl; * } * } * @endcode * * @subsection input Input * * All text input is expected to be UTF-8. * * @section exceptions Exceptions * * Any unrecoverable libcurl error will be thrown as a * mastodonpp::CURLException. Network errors will not be thrown, but reported * via the return value. * * @section thread_safety Thread safety * * The first time you construct an @link mastodonpp::Instance Instance @endlink * or @link mastodonpp::Connection Connection @endlink, [curl_global_init(3)] * (https://curl.haxx.se/libcurl/c/curl_global_init.html) is called. When the * last @link mastodonpp::Instance Instance @endlink or @link * mastodonpp::Connection Connection @endlink is destroyed, * [curl_global_cleanup(3)] * (https://curl.haxx.se/libcurl/c/curl_global_cleanup.html) is called. Both * are not thread safe. * * @example example01_instance_info.cpp */ /*! * @brief C++ wrapper for the Mastodon %API. * * @since 0.1.0 */ namespace mastodonpp {} // namespace mastodonpp #endif // MASTODONPP_HPP