Switch to unified view

a/src/internfile/mh_exec.h b/src/internfile/mh_exec.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 _MH_EXEC_H_INCLUDED_
17
#ifndef _MH_EXEC_H_INCLUDED_
18
#define _MH_EXEC_H_INCLUDED_
18
#define _MH_EXEC_H_INCLUDED_
19
/* @(#$Id: mh_exec.h,v 1.4 2007-10-25 15:50:31 dockes Exp $  (C) 2004 J.F.Dockes */
19
/* @(#$Id: mh_exec.h,v 1.5 2008-08-26 07:31:54 dockes Exp $  (C) 2004 J.F.Dockes */
20
20
21
#include <string>
21
#include <string>
22
#include <list>
22
#include <list>
23
using std::list;
23
using std::list;
24
using std::string;
24
using std::string;
...
...
38
    m_fn = file_path;
38
    m_fn = file_path;
39
    m_havedoc = true;
39
    m_havedoc = true;
40
    return true;
40
    return true;
41
    }
41
    }
42
    virtual bool next_document();
42
    virtual bool next_document();
43
    virtual bool skip_to_document(const string& ipath) {
44
  m_ipath = ipath;
45
  return true;
46
    }
43
private:
47
private:
44
    string m_fn;
48
    string m_fn;
49
    string m_ipath;
45
};
50
};
46
51
47
#endif /* _MH_EXEC_H_INCLUDED_ */
52
#endif /* _MH_EXEC_H_INCLUDED_ */