acl  3.5.3.0
mime_image.hpp
浏览该文件的文档.
1 #pragma once
2 #include "../acl_cpp_define.hpp"
3 #include "mime_node.hpp"
4 
5 #if !defined(ACL_MIME_DISABLE)
6 
7 namespace acl {
8 
10 {
11 public:
12  mime_image(const char* emailFile, const MIME_NODE* node,
13  bool enableDecode = true, const char* toCharset = "gb2312",
14  off_t off = 0)
15  : mime_node(emailFile, node, enableDecode, toCharset, off)
16  {
17  }
18 
19  ~mime_image(void) {}
20 
21  const char* get_location(void) const;
22 };
23 
24 } // namespace acl
25 
26 #endif // !defined(ACL_MIME_DISABLE)
mime_image(const char *emailFile, const MIME_NODE *node, bool enableDecode=true, const char *toCharset="gb2312", off_t off=0)
Definition: mime_image.hpp:12
#define ACL_CPP_API