~ubuntu-branches/ubuntu/feisty/strigi/feisty-backports

« back to all changes in this revision

Viewing changes to src/streams/fileinputstream.h

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2006-11-12 19:23:58 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20061112192358-bopz8iu9cr8bosyc
Tags: 0.3.9-1
* New upstream release
* Remove patch to inotify support option, merged upstream
* Add poppler-utils and wv as Depends
* Include utils.mk to rules
* Add deepfind, deepgrep, luceneindexer and xmlindexer to
  strigi-daemon.install
* Update strigi-daemon.lintian-overrides for 0.3.9 version

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
public:
33
33
    static const int32_t defaultBufferSize;
34
 
    FileInputStream(const char *filepath, int32_t buffersize=defaultBufferSize);
 
34
    explicit FileInputStream(const char *filepath,
 
35
        int32_t buffersize=defaultBufferSize);
35
36
    ~FileInputStream();
36
37
    int32_t fillBuffer(char* start, int32_t space);
37
38
};