めんどくさくなったから一括でコミットするけど許してくれ
This commit is contained in:
@@ -1,15 +1,24 @@
|
||||
#ifndef COCOATWEET_API_H_
|
||||
#define COCOATWEET_API_H_
|
||||
|
||||
#include "cocoatweet/api/status/status.h"
|
||||
#include "cocoatweet/api/favorite/favorite.h"
|
||||
#include "cocoatweet/oauth/oauth.h"
|
||||
#include <cocoatweet/api/status/status.h>
|
||||
#include <cocoatweet/api/favorite/favorite.h>
|
||||
#include <cocoatweet/oauth/oauth.h>
|
||||
|
||||
namespace CocoaTweet::API {
|
||||
/// @brief Twitter API Entry Point
|
||||
class API {
|
||||
public:
|
||||
/// @brief primary constructor
|
||||
/// @param[in] _key Twitter API Key typed CocoaTweet::OAuth::Key
|
||||
API(CocoaTweet::OAuth::Key _key);
|
||||
|
||||
/// @brief Getter for Grouped by Statuses/*
|
||||
/// @param[out] Status object typed CocoaTweet::API::Statuses::Status
|
||||
Statuses::Status status() const;
|
||||
|
||||
/// @brief Getter for Grouped by Favorites/*
|
||||
/// @param[out] Favorite object typed CococaTweet::API::Favorites::Favorite
|
||||
Favorites::Favorite favorite() const;
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user