~ubuntu-branches/ubuntu/karmic/recoll/karmic

« back to all changes in this revision

Viewing changes to internfile/mh_exec.h

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry
  • Date: 2007-05-03 12:15:02 UTC
  • Revision ID: james.westby@ubuntu.com-20070503121502-rmfihk303ic03g59
Tags: upstream-1.8.1
ImportĀ upstreamĀ versionĀ 1.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   This program is free software; you can redistribute it and/or modify
 
3
 *   it under the terms of the GNU General Public License as published by
 
4
 *   the Free Software Foundation; either version 2 of the License, or
 
5
 *   (at your option) any later version.
 
6
 *
 
7
 *   This program is distributed in the hope that it will be useful,
 
8
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
 *   GNU General Public License for more details.
 
11
 *
 
12
 *   You should have received a copy of the GNU General Public License
 
13
 *   along with this program; if not, write to the
 
14
 *   Free Software Foundation, Inc.,
 
15
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
16
 */
 
17
#ifndef _MH_EXEC_H_INCLUDED_
 
18
#define _MH_EXEC_H_INCLUDED_
 
19
/* @(#$Id: mh_exec.h,v 1.3 2006/12/15 12:40:02 dockes Exp $  (C) 2004 J.F.Dockes */
 
20
 
 
21
#include <string>
 
22
#include <list>
 
23
 
 
24
#include "rclconfig.h"
 
25
#include "rcldb.h"
 
26
#include "mimehandler.h"
 
27
 
 
28
/** 
 
29
    Turn external document into internal one by executing an external filter.
 
30
    The command to execute, and its parameters, come from the mimeconf file
 
31
*/
 
32
class MimeHandlerExec : public RecollFilter {
 
33
 public:
 
34
    std::list<std::string> params;
 
35
    MimeHandlerExec(const string& mt) : RecollFilter(mt) {}
 
36
    virtual ~MimeHandlerExec() {}
 
37
    virtual bool set_document_file(const string &file_path) {
 
38
        m_fn = file_path;
 
39
        m_havedoc = true;
 
40
        return true;
 
41
    }
 
42
    virtual bool next_document();
 
43
private:
 
44
    string m_fn;
 
45
};
 
46
 
 
47
#endif /* _MH_EXEC_H_INCLUDED_ */