standard header and indenting only

git-svn-id: https://zxing.googlecode.com/svn/trunk@2022 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
smparkes@smparkes.net 2011-11-10 16:57:04 +00:00
parent 5311b1ce27
commit 80a76cb952
2 changed files with 14 additions and 13 deletions

View file

@ -1,6 +1,6 @@
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
/* /*
* NotFoundException.cpp * Copyright 20011 ZXing authors
* zxing
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -19,11 +19,11 @@
namespace zxing { namespace zxing {
NotFoundException::NotFoundException(const char *msg) : NotFoundException::NotFoundException(const char *msg) :
Exception(msg) { Exception(msg) {
} }
NotFoundException::~NotFoundException() throw() { NotFoundException::~NotFoundException() throw() {
} }
} }

View file

@ -1,9 +1,10 @@
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
#ifndef __NOT_FOUND_EXCEPTION_H__ #ifndef __NOT_FOUND_EXCEPTION_H__
#define __NOT_FOUND_EXCEPTION_H__ #define __NOT_FOUND_EXCEPTION_H__
/* /*
* NotFoundException.h * Copyright 20011 ZXing authors
* zxing
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -22,11 +23,11 @@
namespace zxing { namespace zxing {
class NotFoundException : public Exception { class NotFoundException : public Exception {
public: public:
NotFoundException(const char *msg); NotFoundException(const char *msg);
~NotFoundException() throw(); ~NotFoundException() throw();
}; };
} }
#endif // __NOT_FOUND_EXCEPTION_H__ #endif // __NOT_FOUND_EXCEPTION_H__