HttpMimeTypes.h 256 B

123456789101112131415
  1. #ifndef HTTP_HTTPMIMETYPES_H
  2. #define HTTP_HTTPMIMETYPES_H
  3. #include <string>
  4. namespace Http {
  5. namespace MimeTypes {
  6. std::string ExtensionToType(const std::string& extension);
  7. } // namespace MimeTypes
  8. } // namespace Http
  9. #endif // HTTP_HTTPMIMETYPES_H