Renamed return_types.hpp to answer.hpp.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2020-01-06 14:43:10 +01:00
parent 1ac1bda619
commit 5d90fa97f1
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
6 changed files with 9 additions and 9 deletions

View File

@ -14,8 +14,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MASTODONPP_RETURN_TYPES_HPP
#define MASTODONPP_RETURN_TYPES_HPP
#ifndef MASTODONPP_ANSWER_HPP
#define MASTODONPP_ANSWER_HPP
#include <cstdint>
#include <string>
@ -34,7 +34,7 @@ using std::string_view;
*
* @since 0.1.0
*
* @headerfile return_types.hpp mastodonpp/return_types.hpp
* @headerfile answer.hpp mastodonpp/answer.hpp
*
*/
struct answer_type
@ -103,4 +103,4 @@ struct answer_type
} // namespace mastodonpp
#endif // MASTODONPP_RETURN_TYPES_HPP
#endif // MASTODONPP_ANSWER_HPP

View File

@ -17,10 +17,10 @@
#ifndef MASTODONPP_CONNECTION_HPP
#define MASTODONPP_CONNECTION_HPP
#include "answer.hpp"
#include "api.hpp"
#include "curl_wrapper.hpp"
#include "instance.hpp"
#include "return_types.hpp"
#include <string>
#include <string_view>

View File

@ -17,7 +17,7 @@
#ifndef MASTODONPP_CURL_WRAPPER_HPP
#define MASTODONPP_CURL_WRAPPER_HPP
#include "return_types.hpp"
#include "answer.hpp"
#include "curl/curl.h"

View File

@ -17,11 +17,11 @@
#ifndef MASTODONPP_HPP
#define MASTODONPP_HPP
#include "answer.hpp"
#include "api.hpp"
#include "connection.hpp"
#include "exceptions.hpp"
#include "instance.hpp"
#include "return_types.hpp"
/*!
* @headerfile mastodonpp.hpp mastodonpp/mastodonpp.hpp

View File

@ -14,7 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "return_types.hpp"
#include "answer.hpp"
namespace mastodonpp
{

View File

@ -14,9 +14,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "answer.hpp"
#include "instance.hpp"
#include "log.hpp"
#include "return_types.hpp"
namespace mastodonpp
{