~ubuntu-branches/ubuntu/utopic/unrar-nonfree/utopic-updates

« back to all changes in this revision

Viewing changes to savepos.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Chris Anderson
  • Date: 2004-07-02 01:53:47 UTC
  • Revision ID: james.westby@ubuntu.com-20040702015347-26ptn0errf3ew0u9
Tags: upstream-3.3.6
ImportĀ upstreamĀ versionĀ 3.3.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _RAR_SAVEPOS_
 
2
#define _RAR_SAVEPOS_
 
3
 
 
4
class SaveFilePos
 
5
{
 
6
  private:
 
7
    File *SaveFile;
 
8
    Int64 SavePos;
 
9
    uint CloseCount;
 
10
  public:
 
11
    SaveFilePos(File &SaveFile);
 
12
    ~SaveFilePos();
 
13
};
 
14
 
 
15
#endif