diff options
Diffstat (limited to 'protocols/Twitter/src/http.h')
-rw-r--r-- | protocols/Twitter/src/http.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/protocols/Twitter/src/http.h b/protocols/Twitter/src/http.h index e3ed522383..0522fa53ab 100644 --- a/protocols/Twitter/src/http.h +++ b/protocols/Twitter/src/http.h @@ -19,20 +19,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #pragma once
-#include <string>
-
namespace http
{
- enum method
- {
- get,
- post
- };
-
struct response
{
response() : code(0) {}
int code;
- std::string data;
+ CMStringA data;
};
}
|