Jun Furutani / libMiMic

Fork of libMiMic by Ryo Iizuka

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Http.h Source File

Http.h

00001 #pragma once
00002 ////////////////////////////////////////////////////////////////////////////////
00003 // Httpd.h
00004 ////////////////////////////////////////////////////////////////////////////////
00005 
00006 #include "NyLPC_net.h"
00007 
00008 namespace MiMic
00009 {
00010     class Http
00011     {
00012     public:
00013         const static int MT_GET =NyLPC_THttpMethodType_GET;
00014         const static int MT_POST=NyLPC_THttpMethodType_POST;
00015         const static int MT_HEAD=NyLPC_THttpMethodType_HEAD;
00016     };
00017 }