Add copyright header to source with it missing

This commit is contained in:
Tom Deakin 2016-05-12 12:53:26 +01:00
parent d75084b753
commit 942188d836
6 changed files with 38 additions and 5 deletions

View File

@ -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 <class T>

View File

@ -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 <iostream>
@ -36,4 +42,3 @@ class ACCStream : public Stream<T>
};

View File

@ -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 <class T>

View File

@ -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 <iostream>
@ -32,4 +38,3 @@ class OMP3Stream : public Stream<T>
virtual void read_arrays(std::vector<T>& a, std::vector<T>& b, std::vector<T>& c) override;
};

View File

@ -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 <class T>

View File

@ -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 <iostream>
@ -37,4 +43,3 @@ class OMP45Stream : public Stream<T>
};