From 3046b1b4dae3de07fdcbbd5c986e6e2ae57a7487 Mon Sep 17 00:00:00 2001 From: Alfred Wong Date: Thu, 22 Apr 2021 12:22:37 +0100 Subject: [PATCH] license header for RayGenerator.jl --- src/Optical/RayGenerator.jl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Optical/RayGenerator.jl b/src/Optical/RayGenerator.jl index 23552e5cc..d2771da02 100644 --- a/src/Optical/RayGenerator.jl +++ b/src/Optical/RayGenerator.jl @@ -1,3 +1,7 @@ +# MIT license +# Copyright (c) Microsoft Corporation. All rights reserved. +# See LICENSE in the project root for full license information. + abstract type AbstractRayGenerator{T<:Real} end """ @@ -13,4 +17,4 @@ abstract type GeometricRayGenerator{T} <: AbstractRayGenerator{T} end Generates [`OpticalRay`](@ref)s according to the specific implementation of the subclass. """ abstract type OpticalRayGenerator{T} <: AbstractRayGenerator{T} end -export AbstractRayGenerator, GeometricRayGenerator, OpticalRayGenerator \ No newline at end of file +export AbstractRayGenerator, GeometricRayGenerator, OpticalRayGenerator