~ubuntu-branches/ubuntu/trusty/advancecomp/trusty

« back to all changes in this revision

Viewing changes to 7z/BinTreeMF.h

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ozarowski
  • Date: 2006-05-13 21:15:49 UTC
  • Revision ID: james.westby@ubuntu.com-20060513211549-2vu7peis643ojcm5
Tags: upstream-1.15
ImportĀ upstreamĀ versionĀ 1.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// #ifndef __BINTREEMF_H
 
2
// #define __BINTREEMF_H
 
3
 
 
4
#include "BinTree.h"
 
5
 
 
6
namespace BT_NAMESPACE {
 
7
 
 
8
class CMatchFinderBinTree : public CInTree
 
9
{
 
10
public:
 
11
  HRESULT Create(UINT32 aSizeHistory,
 
12
      UINT32 aKeepAddBufferBefore, UINT32 aMatchMaxLen, 
 
13
      UINT32 aKeepAddBufferAfter);
 
14
};
 
15
 
 
16
}
 
17
 
 
18
// #endif
 
19