~dpm/+junk/cam-preview-tests

« back to all changes in this revision

Viewing changes to zxing/datamatrix/detector/DetectorException.h

  • Committer: David Planella
  • Date: 2013-06-03 07:55:58 UTC
  • Revision ID: david.planella@ubuntu.com-20130603075558-mpdlkczwnljai3im
Initial commit. This is experimental, playground code

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DetectorException.h
 
3
 *
 
4
 *  Created on: Aug 26, 2011
 
5
 *      Author: luiz
 
6
 */
 
7
 
 
8
#ifndef DETECTOREXCEPTION_H_
 
9
#define DETECTOREXCEPTION_H_
 
10
 
 
11
#include <zxing/Exception.h>
 
12
 
 
13
namespace zxing {
 
14
namespace datamatrix {
 
15
 
 
16
class DetectorException : public Exception {
 
17
  public:
 
18
    DetectorException(const char *msg);
 
19
    virtual ~DetectorException() throw();
 
20
};
 
21
} /* namespace nexxera */
 
22
} /* namespace zxing */
 
23
#endif /* DETECTOREXCEPTION_H_ */