From 80a76cb9528631b30654fa814bcae905afeeaf8b Mon Sep 17 00:00:00 2001 From: "smparkes@smparkes.net" Date: Thu, 10 Nov 2011 16:57:04 +0000 Subject: [PATCH] standard header and indenting only git-svn-id: https://zxing.googlecode.com/svn/trunk@2022 59b500cc-1b3d-0410-9834-0bbf25fbcc57 --- cpp/core/src/zxing/NotFoundException.cpp | 12 ++++++------ cpp/core/src/zxing/NotFoundException.h | 15 ++++++++------- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/cpp/core/src/zxing/NotFoundException.cpp b/cpp/core/src/zxing/NotFoundException.cpp index fb411205b..6f55a97c2 100644 --- a/cpp/core/src/zxing/NotFoundException.cpp +++ b/cpp/core/src/zxing/NotFoundException.cpp @@ -1,6 +1,6 @@ +// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*- /* - * NotFoundException.cpp - * zxing + * Copyright 20011 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,11 +19,11 @@ namespace zxing { -NotFoundException::NotFoundException(const char *msg) : + NotFoundException::NotFoundException(const char *msg) : Exception(msg) { -} + } -NotFoundException::~NotFoundException() throw() { -} + NotFoundException::~NotFoundException() throw() { + } } diff --git a/cpp/core/src/zxing/NotFoundException.h b/cpp/core/src/zxing/NotFoundException.h index b9a350d2c..00b103035 100644 --- a/cpp/core/src/zxing/NotFoundException.h +++ b/cpp/core/src/zxing/NotFoundException.h @@ -1,9 +1,10 @@ +// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*- + #ifndef __NOT_FOUND_EXCEPTION_H__ #define __NOT_FOUND_EXCEPTION_H__ /* - * NotFoundException.h - * zxing + * Copyright 20011 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,11 +23,11 @@ namespace zxing { -class NotFoundException : public Exception { -public: - NotFoundException(const char *msg); - ~NotFoundException() throw(); -}; + class NotFoundException : public Exception { + public: + NotFoundException(const char *msg); + ~NotFoundException() throw(); + }; } #endif // __NOT_FOUND_EXCEPTION_H__