~ubuntu-branches/ubuntu/saucy/darktable/saucy

« back to all changes in this revision

Viewing changes to src/external/rawspeed/RawSpeed/ByteStreamSwap.h

  • Committer: Bazaar Package Importer
  • Author(s): David Bremner
  • Date: 2011-08-02 21:32:31 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110802213231-r9v63trgyk1e822j
Tags: 0.9.1-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef BYTE_STREAM_SWAP_H
 
2
#define BYTE_STREAM_SWAP_H
 
3
 
 
4
#include "ByteStream.h"
 
5
 
 
6
#include "IOException.h"
 
7
 
 
8
namespace RawSpeed {
 
9
 
 
10
class ByteStreamSwap :
 
11
  public ByteStream
 
12
{
 
13
public:
 
14
  ByteStreamSwap(const uchar8* _buffer, uint32 _size);
 
15
  ByteStreamSwap(const ByteStreamSwap* b);
 
16
  virtual ushort16 getShort();
 
17
  virtual int getInt();
 
18
  virtual ~ByteStreamSwap(void);
 
19
};
 
20
 
 
21
} // namespace RawSpeed
 
22
 
 
23
#endif