CPPMyth
Library to interoperate with MythTV server
wscontent.h
1 /*
2  * Copyright (C) 2014 Jean-Luc Barriere
3  *
4  * This library is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published
6  * by the Free Software Foundation; either version 3, or (at your option)
7  * any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with this library; see the file COPYING. If not, write to
16  * the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
17  * MA 02110-1301 USA
18  * http://www.gnu.org/copyleft/gpl.html
19  *
20  */
21 
22 #ifndef WSCONTENT_H
23 #define WSCONTENT_H
24 
25 #include <cppmyth_config.h>
26 
27 namespace NSROOT
28 {
29 
30  typedef enum
31  {
32  CT_NONE = 0,
33  CT_FORM = 1,
34  CT_SOAP,
35  CT_JSON,
36  CT_XML,
37  CT_TXT,
38  CT_GIF,
39  CT_PNG,
40  CT_JPG,
41  CT_UNKNOWN // Keep at last
42  } CT_t;
43 
44  CT_t ContentTypeFromMime(const char* mime);
45  const char* MimeFromContentType(CT_t ct);
46  const char* ExtnFromContentType(CT_t ct);
47 
48  typedef enum
49  {
50  CE_NONE = 0,
51  CE_DEFLATE = 1,
52  CE_GZIP,
53  CE_UNKNOWN // Keep at last
54  } CE_t;
55 }
56 
57 #endif /* WSCONTENT_H */