|
a/src/internfile/mh_html.h |
|
b/src/internfile/mh_html.h |
|
... |
|
... |
14 |
* Free Software Foundation, Inc.,
|
14 |
* Free Software Foundation, Inc.,
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
16 |
*/
|
16 |
*/
|
17 |
#ifndef _HTML_H_INCLUDED_
|
17 |
#ifndef _HTML_H_INCLUDED_
|
18 |
#define _HTML_H_INCLUDED_
|
18 |
#define _HTML_H_INCLUDED_
|
19 |
/* @(#$Id: mh_html.h,v 1.11 2008-10-03 06:17:46 dockes Exp $ (C) 2004 J.F.Dockes */
|
19 |
/* @(#$Id: mh_html.h,v 1.12 2008-10-04 14:26:59 dockes Exp $ (C) 2004 J.F.Dockes */
|
20 |
|
20 |
|
21 |
#include <string>
|
21 |
#include <string>
|
22 |
|
22 |
|
23 |
#include "mimehandler.h"
|
23 |
#include "mimehandler.h"
|
24 |
|
24 |
|
|
... |
|
... |
39 |
virtual bool next_document();
|
39 |
virtual bool next_document();
|
40 |
const string& get_html()
|
40 |
const string& get_html()
|
41 |
{
|
41 |
{
|
42 |
return m_html;
|
42 |
return m_html;
|
43 |
}
|
43 |
}
|
|
|
44 |
virtual void clear() {
|
|
|
45 |
m_filename.erase();
|
|
|
46 |
m_html.erase();
|
|
|
47 |
RecollFilter::clear();
|
44 |
|
48 |
}
|
45 |
private:
|
49 |
private:
|
46 |
string m_filename;
|
50 |
string m_filename;
|
47 |
string m_html;
|
51 |
string m_html;
|
48 |
};
|
52 |
};
|
49 |
|
53 |
|