Boost C++ Libraries Home Libraries People FAQ More

Home | Reference | Tutorial | Examples | Design

http/server/mime_types.hpp

Go to the documentation of this file.
00001 #ifndef HTTP_MIME_TYPES_HPP
00002 #define HTTP_MIME_TYPES_HPP
00003 
00004 #include <string>
00005 
00006 namespace http {
00007 namespace server {
00008 namespace mime_types {
00009 
00011 std::string extension_to_type(const std::string& extension);
00012 
00013 } // namespace mime_types
00014 } // namespace server
00015 } // namespace http
00016 
00017 #endif // HTTP_MIME_TYPES_HPP
Copyright © 2003 - 2006 Christopher M. Kohlhoff

Home | Reference | Tutorial | Examples | Design