|
a/src/internfile/mh_html.h |
|
b/src/internfile/mh_html.h |
|
... |
|
... |
35 |
if (input == DOCUMENT_FILE_NAME || input == DOCUMENT_STRING)
|
35 |
if (input == DOCUMENT_FILE_NAME || input == DOCUMENT_STRING)
|
36 |
return true;
|
36 |
return true;
|
37 |
return false;
|
37 |
return false;
|
38 |
}
|
38 |
}
|
39 |
virtual bool next_document();
|
39 |
virtual bool next_document();
|
40 |
const std::string& get_html()
|
40 |
const std::string& get_html() {
|
41 |
{
|
|
|
42 |
return m_html;
|
41 |
return m_html;
|
43 |
}
|
42 |
}
|
44 |
virtual void clear() {
|
43 |
virtual void clear_impl() override {
|
45 |
m_filename.erase();
|
44 |
m_filename.erase();
|
46 |
m_html.erase();
|
45 |
m_html.erase();
|
47 |
RecollFilter::clear();
|
|
|
48 |
}
|
46 |
}
|
49 |
protected:
|
47 |
protected:
|
50 |
virtual bool set_document_file_impl(const std::string& mt,
|
48 |
virtual bool set_document_file_impl(const std::string& mt,
|
51 |
const std::string &file_path);
|
49 |
const std::string &file_path);
|
52 |
virtual bool set_document_string_impl(const std::string& mt,
|
50 |
virtual bool set_document_string_impl(const std::string& mt,
|