Skip to content

Commit

Permalink
Added Copyright headers to .cpp and .h files (#790)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChascaNeperiana authored and joseartrivera committed Nov 12, 2019
1 parent 433d54d commit 626bdf0
Show file tree
Hide file tree
Showing 19 changed files with 58 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/GraphControl/Control/Equation.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#include "pch.h"
#include "Equation.h"

Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/Control/Equation.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once

namespace GraphControl
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/Control/EquationCollection.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once

#include "Equation.h"
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/Control/Grapher.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#include "pch.h"
#include "Grapher.h"

Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/Control/Grapher.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once

#include "InspectingDataSource.h"
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/Control/InspectingDataSource.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#include "pch.h"
#include "InspectingDataSource.h"

Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/Control/InspectingDataSource.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once

namespace GraphControl
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/DirectX/ActiveTracingPointRenderer.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#include "pch.h"
#include "ActiveTracingPointRenderer.h"
#include "DirectXHelper.h"
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/DirectX/ActiveTracingPointRenderer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once

namespace GraphControl::DX
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/DirectX/DeviceResources.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#include "pch.h"
#include "DeviceResources.h"
#include "DirectXHelper.h"
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/DirectX/DeviceResources.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once

// Modified from the default template for Xaml and Direct3D 11 apps.
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/DirectX/DirectXHelper.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once

// Taken from the default template for Xaml and Direct3D 11 apps.
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/DirectX/NearestPointRenderer.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#include "pch.h"
#include "NearestPointRenderer.h"
#include "DirectXHelper.h"
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/DirectX/NearestPointRenderer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once

namespace GraphControl::DX
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/DirectX/RenderMain.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#include "pch.h"
#include "RenderMain.h"
#include "DirectXHelper.h"
Expand Down
3 changes: 3 additions & 0 deletions src/GraphControl/DirectX/RenderMain.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once

// Taken from the default template for Xaml and Direct3D 11 apps.
Expand Down
3 changes: 3 additions & 0 deletions src/MockGraphingImpl/Mocks/MathSolver.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#include "pch.h"
#include "MathSolver.h"

Expand Down
3 changes: 3 additions & 0 deletions src/MockGraphingImpl/Mocks/MathSolver.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once

#include "GraphingInterfaces/IMathSolver.h"
Expand Down
5 changes: 4 additions & 1 deletion src/MockGraphingImpl/dllmain.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#include "pch.h"
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#include "pch.h"

BOOL APIENTRY DllMain(HMODULE /* hModule */, DWORD ul_reason_for_call, LPVOID /* lpReserved */)
{
Expand Down

0 comments on commit 626bdf0

Please sign in to comment.