From 942188d836c5e5e8cb914689d2dd32ca52e00e8f Mon Sep 17 00:00:00 2001 From: Tom Deakin Date: Thu, 12 May 2016 12:53:26 +0100 Subject: [PATCH] Add copyright header to source with it missing --- ACCStream.cpp | 6 ++++++ ACCStream.h | 9 +++++++-- OMP3Stream.cpp | 6 ++++++ OMP3Stream.h | 7 ++++++- OMP45Stream.cpp | 6 ++++++ OMP45Stream.h | 9 +++++++-- 6 files changed, 38 insertions(+), 5 deletions(-) diff --git a/ACCStream.cpp b/ACCStream.cpp index 8e3bb32..48e042e 100644 --- a/ACCStream.cpp +++ b/ACCStream.cpp @@ -1,4 +1,10 @@ +// Copyright (c) 2015-16 Tom Deakin, Simon McIntosh-Smith, +// University of Bristol HPC +// +// For full license terms please see the LICENSE file distributed with this +// source code + #include "ACCStream.h" template diff --git a/ACCStream.h b/ACCStream.h index d6e5728..48fea55 100644 --- a/ACCStream.h +++ b/ACCStream.h @@ -1,4 +1,10 @@ +// Copyright (c) 2015-16 Tom Deakin, Simon McIntosh-Smith, +// University of Bristol HPC +// +// For full license terms please see the LICENSE file distributed with this +// source code + #pragma once #include @@ -34,6 +40,5 @@ class ACCStream : public Stream virtual void read_arrays(std::vector& a, std::vector& b, std::vector& c) override; - -}; +}; diff --git a/OMP3Stream.cpp b/OMP3Stream.cpp index 78b0124..fe8323a 100644 --- a/OMP3Stream.cpp +++ b/OMP3Stream.cpp @@ -1,4 +1,10 @@ +// Copyright (c) 2015-16 Tom Deakin, Simon McIntosh-Smith, +// University of Bristol HPC +// +// For full license terms please see the LICENSE file distributed with this +// source code + #include "OMP3Stream.h" template diff --git a/OMP3Stream.h b/OMP3Stream.h index 15172c3..0f14300 100644 --- a/OMP3Stream.h +++ b/OMP3Stream.h @@ -1,4 +1,10 @@ +// Copyright (c) 2015-16 Tom Deakin, Simon McIntosh-Smith, +// University of Bristol HPC +// +// For full license terms please see the LICENSE file distributed with this +// source code + #pragma once #include @@ -32,4 +38,3 @@ class OMP3Stream : public Stream virtual void read_arrays(std::vector& a, std::vector& b, std::vector& c) override; }; - diff --git a/OMP45Stream.cpp b/OMP45Stream.cpp index 7f6e66a..f849c39 100644 --- a/OMP45Stream.cpp +++ b/OMP45Stream.cpp @@ -1,4 +1,10 @@ +// Copyright (c) 2015-16 Tom Deakin, Simon McIntosh-Smith, +// University of Bristol HPC +// +// For full license terms please see the LICENSE file distributed with this +// source code + #include "OMP45Stream.h" template diff --git a/OMP45Stream.h b/OMP45Stream.h index 98c9705..bd812a1 100644 --- a/OMP45Stream.h +++ b/OMP45Stream.h @@ -1,4 +1,10 @@ +// Copyright (c) 2015-16 Tom Deakin, Simon McIntosh-Smith, +// University of Bristol HPC +// +// For full license terms please see the LICENSE file distributed with this +// source code + #pragma once #include @@ -35,6 +41,5 @@ class OMP45Stream : public Stream virtual void read_arrays(std::vector& a, std::vector& b, std::vector& c) override; - -}; +};