From 1613a504f5a2e1be33c521fb301cd98951bcf907 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Thu, 27 Sep 2018 18:53:57 +0900 Subject: [PATCH] [nest] Add license notice (#1648) This commit appends license notice over all the headers and sources of nest. Signed-off-by: Jonghyun Park --- contrib/nest/core/examples/conv2d.cpp | 16 ++++++++++++++++ contrib/nest/core/include/nest/Block.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/Bound.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/Closure.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/Domain.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/DomainContext.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/DomainID.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/DomainInfo.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/Expr.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/FV.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/Level.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/Module.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/Ret.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/Schedule.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/Stmt.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/Var.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/VarContext.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/VarID.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/expr/AddNode.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/expr/DerefNode.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/expr/Forward.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/expr/Macro.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/expr/MulNode.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/expr/Node.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/expr/Subscript.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/expr/VarNode.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/expr/Visitor.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/stmt/Forward.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/stmt/Macro.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/stmt/Node.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/stmt/PushNode.h | 16 ++++++++++++++++ contrib/nest/core/include/nest/stmt/Visitor.h | 16 ++++++++++++++++ contrib/nest/core/src/Block.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Bound.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Closure.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Closure.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Domain.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/DomainContext.cpp | 16 ++++++++++++++++ contrib/nest/core/src/DomainContext.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/DomainID.cpp | 16 ++++++++++++++++ contrib/nest/core/src/DomainID.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/DomainInfo.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Expr.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Expr.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/FV.cpp | 16 ++++++++++++++++ contrib/nest/core/src/FV.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Level.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Level.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Module.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Module.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Ret.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Schedule.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Schedule.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Var.cpp | 16 ++++++++++++++++ contrib/nest/core/src/Var.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/VarContext.cpp | 16 ++++++++++++++++ contrib/nest/core/src/VarContext.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/VarID.cpp | 16 ++++++++++++++++ contrib/nest/core/src/VarID.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/expr/AddNode.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/expr/DerefNode.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/expr/Macro.cpp | 16 ++++++++++++++++ contrib/nest/core/src/expr/MulNode.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/expr/Node.cpp | 16 ++++++++++++++++ contrib/nest/core/src/expr/Subscript.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/expr/VarNode.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/expr/Visitor.cpp | 16 ++++++++++++++++ contrib/nest/core/src/stmt/Macro.cpp | 16 ++++++++++++++++ contrib/nest/core/src/stmt/Node.cpp | 16 ++++++++++++++++ contrib/nest/core/src/stmt/PushNode.test.cpp | 16 ++++++++++++++++ contrib/nest/core/src/stmt/Visitor.cpp | 16 ++++++++++++++++ 71 files changed, 1136 insertions(+) diff --git a/contrib/nest/core/examples/conv2d.cpp b/contrib/nest/core/examples/conv2d.cpp index 4bf9140..e405af9 100644 --- a/contrib/nest/core/examples/conv2d.cpp +++ b/contrib/nest/core/examples/conv2d.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include int main(int, char **) diff --git a/contrib/nest/core/include/nest/Block.h b/contrib/nest/core/include/nest/Block.h index 7e733d4..e9b646f 100644 --- a/contrib/nest/core/include/nest/Block.h +++ b/contrib/nest/core/include/nest/Block.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_BLOCK_H__ #define __NEST_BLOCK_H__ diff --git a/contrib/nest/core/include/nest/Bound.h b/contrib/nest/core/include/nest/Bound.h index bad28c5..252a69e 100644 --- a/contrib/nest/core/include/nest/Bound.h +++ b/contrib/nest/core/include/nest/Bound.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_BOUND_H__ #define __NEST_BOUND_H__ diff --git a/contrib/nest/core/include/nest/Closure.h b/contrib/nest/core/include/nest/Closure.h index e9127e6..7e09afa 100644 --- a/contrib/nest/core/include/nest/Closure.h +++ b/contrib/nest/core/include/nest/Closure.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_CLOSURE_H__ #define __NEST_CLOSURE_H__ diff --git a/contrib/nest/core/include/nest/Domain.h b/contrib/nest/core/include/nest/Domain.h index 5f2ddd5..8d809e2 100644 --- a/contrib/nest/core/include/nest/Domain.h +++ b/contrib/nest/core/include/nest/Domain.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_DOMAIN_H__ #define __NEST_DOMAIN_H__ diff --git a/contrib/nest/core/include/nest/DomainContext.h b/contrib/nest/core/include/nest/DomainContext.h index 74f3da4..425accb 100644 --- a/contrib/nest/core/include/nest/DomainContext.h +++ b/contrib/nest/core/include/nest/DomainContext.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_DOMAIN_CONTEXT_H__ #define __NEST_DOMAIN_CONTEXT_H__ diff --git a/contrib/nest/core/include/nest/DomainID.h b/contrib/nest/core/include/nest/DomainID.h index 65aaca3..935680f 100644 --- a/contrib/nest/core/include/nest/DomainID.h +++ b/contrib/nest/core/include/nest/DomainID.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_DOMAIN_ID_H__ #define __NEST_DOMAIN_ID_H__ diff --git a/contrib/nest/core/include/nest/DomainInfo.h b/contrib/nest/core/include/nest/DomainInfo.h index d4a39fb..ac8f04e 100644 --- a/contrib/nest/core/include/nest/DomainInfo.h +++ b/contrib/nest/core/include/nest/DomainInfo.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_DOMAIN_INFO_H__ #define __NEST_DOMAIN_INFO_H__ diff --git a/contrib/nest/core/include/nest/Expr.h b/contrib/nest/core/include/nest/Expr.h index 5630204..520edcd 100644 --- a/contrib/nest/core/include/nest/Expr.h +++ b/contrib/nest/core/include/nest/Expr.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_EXPR_H__ #define __NEST_EXPR_H__ diff --git a/contrib/nest/core/include/nest/FV.h b/contrib/nest/core/include/nest/FV.h index 8886a28..089f159 100644 --- a/contrib/nest/core/include/nest/FV.h +++ b/contrib/nest/core/include/nest/FV.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_FV_H__ #define __NEST_FV_H__ diff --git a/contrib/nest/core/include/nest/Level.h b/contrib/nest/core/include/nest/Level.h index 7d92d80..ac17886 100644 --- a/contrib/nest/core/include/nest/Level.h +++ b/contrib/nest/core/include/nest/Level.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_LEVEL_H__ #define __NEST_LEVEL_H__ diff --git a/contrib/nest/core/include/nest/Module.h b/contrib/nest/core/include/nest/Module.h index 4f84c66..1294e30 100644 --- a/contrib/nest/core/include/nest/Module.h +++ b/contrib/nest/core/include/nest/Module.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_MODULE_H__ #define __NEST_MODULE_H__ diff --git a/contrib/nest/core/include/nest/Ret.h b/contrib/nest/core/include/nest/Ret.h index daf270e..8f8af15 100644 --- a/contrib/nest/core/include/nest/Ret.h +++ b/contrib/nest/core/include/nest/Ret.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_RET_H__ #define __NEST_RET_H__ diff --git a/contrib/nest/core/include/nest/Schedule.h b/contrib/nest/core/include/nest/Schedule.h index fb1aaef..a92c245 100644 --- a/contrib/nest/core/include/nest/Schedule.h +++ b/contrib/nest/core/include/nest/Schedule.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_SCHEDULE_H__ #define __NEST_SCHEDULE_H__ diff --git a/contrib/nest/core/include/nest/Stmt.h b/contrib/nest/core/include/nest/Stmt.h index 8a30830..4fff26f 100644 --- a/contrib/nest/core/include/nest/Stmt.h +++ b/contrib/nest/core/include/nest/Stmt.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_STMT_H__ #define __NEST_STMT_H__ diff --git a/contrib/nest/core/include/nest/Var.h b/contrib/nest/core/include/nest/Var.h index 6549e45..bb2c6c7 100644 --- a/contrib/nest/core/include/nest/Var.h +++ b/contrib/nest/core/include/nest/Var.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_VAR_H__ #define __NEST_VAR_H__ diff --git a/contrib/nest/core/include/nest/VarContext.h b/contrib/nest/core/include/nest/VarContext.h index afc6964..2438abf 100644 --- a/contrib/nest/core/include/nest/VarContext.h +++ b/contrib/nest/core/include/nest/VarContext.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_VAR_CONTEXT_H__ #define __NEST_VAR_CONTEXT_H__ diff --git a/contrib/nest/core/include/nest/VarID.h b/contrib/nest/core/include/nest/VarID.h index 6907dd7..daf3e9e 100644 --- a/contrib/nest/core/include/nest/VarID.h +++ b/contrib/nest/core/include/nest/VarID.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_VAR_ID_H__ #define __NEST_VAR_ID_H__ diff --git a/contrib/nest/core/include/nest/expr/AddNode.h b/contrib/nest/core/include/nest/expr/AddNode.h index b15d344..b9b5afb 100644 --- a/contrib/nest/core/include/nest/expr/AddNode.h +++ b/contrib/nest/core/include/nest/expr/AddNode.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_EXPR_ADD_NODE_H__ #define __NEST_EXPR_ADD_NODE_H__ diff --git a/contrib/nest/core/include/nest/expr/DerefNode.h b/contrib/nest/core/include/nest/expr/DerefNode.h index c6ef591..19adfe3 100644 --- a/contrib/nest/core/include/nest/expr/DerefNode.h +++ b/contrib/nest/core/include/nest/expr/DerefNode.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEXT_EXPR_DEREF_NODE_H__ #define __NEXT_EXPR_DEREF_NODE_H__ diff --git a/contrib/nest/core/include/nest/expr/Forward.h b/contrib/nest/core/include/nest/expr/Forward.h index ca3b219..ae15b13 100644 --- a/contrib/nest/core/include/nest/expr/Forward.h +++ b/contrib/nest/core/include/nest/expr/Forward.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_EXPR_FORWARD_H__ #define __NEST_EXPR_FORWARD_H__ diff --git a/contrib/nest/core/include/nest/expr/Macro.h b/contrib/nest/core/include/nest/expr/Macro.h index 68d4785..dca8bd3 100644 --- a/contrib/nest/core/include/nest/expr/Macro.h +++ b/contrib/nest/core/include/nest/expr/Macro.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_EXPR_MACRO_H__ #define __NEST_EXPR_MACRO_H__ diff --git a/contrib/nest/core/include/nest/expr/MulNode.h b/contrib/nest/core/include/nest/expr/MulNode.h index cf40c00..f388b33 100644 --- a/contrib/nest/core/include/nest/expr/MulNode.h +++ b/contrib/nest/core/include/nest/expr/MulNode.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_EXPR_MUL_NODE_H__ #define __NEST_EXPR_MUL_NODE_H__ diff --git a/contrib/nest/core/include/nest/expr/Node.h b/contrib/nest/core/include/nest/expr/Node.h index 990045a..d187c25 100644 --- a/contrib/nest/core/include/nest/expr/Node.h +++ b/contrib/nest/core/include/nest/expr/Node.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_EXPR_NODE_H__ #define __NEST_EXPR_NODE_H__ diff --git a/contrib/nest/core/include/nest/expr/Subscript.h b/contrib/nest/core/include/nest/expr/Subscript.h index 6f16b22..1670b80 100644 --- a/contrib/nest/core/include/nest/expr/Subscript.h +++ b/contrib/nest/core/include/nest/expr/Subscript.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_SUBSCRIPT_H__ #define __NEST_SUBSCRIPT_H__ diff --git a/contrib/nest/core/include/nest/expr/VarNode.h b/contrib/nest/core/include/nest/expr/VarNode.h index dcd13e6..0767fed 100644 --- a/contrib/nest/core/include/nest/expr/VarNode.h +++ b/contrib/nest/core/include/nest/expr/VarNode.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEXT_EXPR_VAR_NODE_H__ #define __NEXT_EXPR_VAR_NODE_H__ diff --git a/contrib/nest/core/include/nest/expr/Visitor.h b/contrib/nest/core/include/nest/expr/Visitor.h index b1c339b..84f70e9 100644 --- a/contrib/nest/core/include/nest/expr/Visitor.h +++ b/contrib/nest/core/include/nest/expr/Visitor.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_EXPR_VISITOR_H__ #define __NEST_EXPR_VISITOR_H__ diff --git a/contrib/nest/core/include/nest/stmt/Forward.h b/contrib/nest/core/include/nest/stmt/Forward.h index e4dfd05..349898e 100644 --- a/contrib/nest/core/include/nest/stmt/Forward.h +++ b/contrib/nest/core/include/nest/stmt/Forward.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_STMT_FORWARD_H__ #define __NEST_STMT_FORWARD_H__ diff --git a/contrib/nest/core/include/nest/stmt/Macro.h b/contrib/nest/core/include/nest/stmt/Macro.h index 30073b1..f8cd894 100644 --- a/contrib/nest/core/include/nest/stmt/Macro.h +++ b/contrib/nest/core/include/nest/stmt/Macro.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_STMT_MACRO_H__ #define __NEST_STMT_MACRO_H__ diff --git a/contrib/nest/core/include/nest/stmt/Node.h b/contrib/nest/core/include/nest/stmt/Node.h index 5d52caf..593eb68 100644 --- a/contrib/nest/core/include/nest/stmt/Node.h +++ b/contrib/nest/core/include/nest/stmt/Node.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_STMT_NODE_H__ #define __NEST_STMT_NODE_H__ diff --git a/contrib/nest/core/include/nest/stmt/PushNode.h b/contrib/nest/core/include/nest/stmt/PushNode.h index e8b3ed0..8a6b3cd 100644 --- a/contrib/nest/core/include/nest/stmt/PushNode.h +++ b/contrib/nest/core/include/nest/stmt/PushNode.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_STMT_PUSH_NODE_H__ #define __NEST_STMT_PUSH_NODE_H__ diff --git a/contrib/nest/core/include/nest/stmt/Visitor.h b/contrib/nest/core/include/nest/stmt/Visitor.h index c915b4a..459f0c9 100644 --- a/contrib/nest/core/include/nest/stmt/Visitor.h +++ b/contrib/nest/core/include/nest/stmt/Visitor.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef __NEST_STMT_VISITOR_H__ #define __NEST_STMT_VISITOR_H__ diff --git a/contrib/nest/core/src/Block.test.cpp b/contrib/nest/core/src/Block.test.cpp index 045a659..b40fbea 100644 --- a/contrib/nest/core/src/Block.test.cpp +++ b/contrib/nest/core/src/Block.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Block.h" #include diff --git a/contrib/nest/core/src/Bound.test.cpp b/contrib/nest/core/src/Bound.test.cpp index 6a7c83d..7b2f0b6 100644 --- a/contrib/nest/core/src/Bound.test.cpp +++ b/contrib/nest/core/src/Bound.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Bound.h" #include diff --git a/contrib/nest/core/src/Closure.cpp b/contrib/nest/core/src/Closure.cpp index 151e414..253a612 100644 --- a/contrib/nest/core/src/Closure.cpp +++ b/contrib/nest/core/src/Closure.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Closure.h" namespace nest diff --git a/contrib/nest/core/src/Closure.test.cpp b/contrib/nest/core/src/Closure.test.cpp index bab8d5a..1dae849 100644 --- a/contrib/nest/core/src/Closure.test.cpp +++ b/contrib/nest/core/src/Closure.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Closure.h" #include diff --git a/contrib/nest/core/src/Domain.test.cpp b/contrib/nest/core/src/Domain.test.cpp index 1b85360..5f973ec 100644 --- a/contrib/nest/core/src/Domain.test.cpp +++ b/contrib/nest/core/src/Domain.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Domain.h" #include diff --git a/contrib/nest/core/src/DomainContext.cpp b/contrib/nest/core/src/DomainContext.cpp index c430809..4a7f223 100644 --- a/contrib/nest/core/src/DomainContext.cpp +++ b/contrib/nest/core/src/DomainContext.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/DomainContext.h" namespace nest diff --git a/contrib/nest/core/src/DomainContext.test.cpp b/contrib/nest/core/src/DomainContext.test.cpp index 64df588..10882df 100644 --- a/contrib/nest/core/src/DomainContext.test.cpp +++ b/contrib/nest/core/src/DomainContext.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/DomainContext.h" #include diff --git a/contrib/nest/core/src/DomainID.cpp b/contrib/nest/core/src/DomainID.cpp index 627b15f..714f07b 100644 --- a/contrib/nest/core/src/DomainID.cpp +++ b/contrib/nest/core/src/DomainID.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/DomainID.h" namespace nest diff --git a/contrib/nest/core/src/DomainID.test.cpp b/contrib/nest/core/src/DomainID.test.cpp index 7baf081..6b1ce83 100644 --- a/contrib/nest/core/src/DomainID.test.cpp +++ b/contrib/nest/core/src/DomainID.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/DomainID.h" #include diff --git a/contrib/nest/core/src/DomainInfo.test.cpp b/contrib/nest/core/src/DomainInfo.test.cpp index 9aed452..7a5d811 100644 --- a/contrib/nest/core/src/DomainInfo.test.cpp +++ b/contrib/nest/core/src/DomainInfo.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/DomainInfo.h" #include diff --git a/contrib/nest/core/src/Expr.cpp b/contrib/nest/core/src/Expr.cpp index 790fe92..6d35f4c 100644 --- a/contrib/nest/core/src/Expr.cpp +++ b/contrib/nest/core/src/Expr.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Expr.h" nest::Expr operator+(const nest::Expr &lhs, const nest::Expr &rhs) diff --git a/contrib/nest/core/src/Expr.test.cpp b/contrib/nest/core/src/Expr.test.cpp index ad36131..0c96f77 100644 --- a/contrib/nest/core/src/Expr.test.cpp +++ b/contrib/nest/core/src/Expr.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Expr.h" #include diff --git a/contrib/nest/core/src/FV.cpp b/contrib/nest/core/src/FV.cpp index 8d197d1..2b51d17 100644 --- a/contrib/nest/core/src/FV.cpp +++ b/contrib/nest/core/src/FV.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/FV.h" namespace diff --git a/contrib/nest/core/src/FV.test.cpp b/contrib/nest/core/src/FV.test.cpp index 03d9f0b..55f5f58 100644 --- a/contrib/nest/core/src/FV.test.cpp +++ b/contrib/nest/core/src/FV.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/FV.h" #include "nest/Module.h" diff --git a/contrib/nest/core/src/Level.cpp b/contrib/nest/core/src/Level.cpp index e7b6ef7..1adf435 100644 --- a/contrib/nest/core/src/Level.cpp +++ b/contrib/nest/core/src/Level.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Level.h" #include diff --git a/contrib/nest/core/src/Level.test.cpp b/contrib/nest/core/src/Level.test.cpp index f99a2f5..b9e203d 100644 --- a/contrib/nest/core/src/Level.test.cpp +++ b/contrib/nest/core/src/Level.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Level.h" #include diff --git a/contrib/nest/core/src/Module.cpp b/contrib/nest/core/src/Module.cpp index acfb6aa..060f94e 100644 --- a/contrib/nest/core/src/Module.cpp +++ b/contrib/nest/core/src/Module.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Module.h" #include diff --git a/contrib/nest/core/src/Module.test.cpp b/contrib/nest/core/src/Module.test.cpp index 8048816..01e414d 100644 --- a/contrib/nest/core/src/Module.test.cpp +++ b/contrib/nest/core/src/Module.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Module.h" #include diff --git a/contrib/nest/core/src/Ret.test.cpp b/contrib/nest/core/src/Ret.test.cpp index cd3c78d..703f049 100644 --- a/contrib/nest/core/src/Ret.test.cpp +++ b/contrib/nest/core/src/Ret.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Ret.h" #include diff --git a/contrib/nest/core/src/Schedule.cpp b/contrib/nest/core/src/Schedule.cpp index 593263e..81f9cd2 100644 --- a/contrib/nest/core/src/Schedule.cpp +++ b/contrib/nest/core/src/Schedule.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Schedule.h" #include diff --git a/contrib/nest/core/src/Schedule.test.cpp b/contrib/nest/core/src/Schedule.test.cpp index f91a72d..8f0ddb2 100644 --- a/contrib/nest/core/src/Schedule.test.cpp +++ b/contrib/nest/core/src/Schedule.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Schedule.h" #include diff --git a/contrib/nest/core/src/Var.cpp b/contrib/nest/core/src/Var.cpp index 1b519ca..93ce6e4 100644 --- a/contrib/nest/core/src/Var.cpp +++ b/contrib/nest/core/src/Var.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Var.h" namespace nest diff --git a/contrib/nest/core/src/Var.test.cpp b/contrib/nest/core/src/Var.test.cpp index 8e15c63..29f8795 100644 --- a/contrib/nest/core/src/Var.test.cpp +++ b/contrib/nest/core/src/Var.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/Var.h" #include diff --git a/contrib/nest/core/src/VarContext.cpp b/contrib/nest/core/src/VarContext.cpp index d32a64d..24b1336 100644 --- a/contrib/nest/core/src/VarContext.cpp +++ b/contrib/nest/core/src/VarContext.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/VarContext.h" namespace nest diff --git a/contrib/nest/core/src/VarContext.test.cpp b/contrib/nest/core/src/VarContext.test.cpp index 4b8f841..169bd61 100644 --- a/contrib/nest/core/src/VarContext.test.cpp +++ b/contrib/nest/core/src/VarContext.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/VarContext.h" #include diff --git a/contrib/nest/core/src/VarID.cpp b/contrib/nest/core/src/VarID.cpp index dc7edad..2390676 100644 --- a/contrib/nest/core/src/VarID.cpp +++ b/contrib/nest/core/src/VarID.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/VarID.h" namespace nest diff --git a/contrib/nest/core/src/VarID.test.cpp b/contrib/nest/core/src/VarID.test.cpp index c0ab460..e4a17a5 100644 --- a/contrib/nest/core/src/VarID.test.cpp +++ b/contrib/nest/core/src/VarID.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/VarID.h" #include diff --git a/contrib/nest/core/src/expr/AddNode.test.cpp b/contrib/nest/core/src/expr/AddNode.test.cpp index 0b2c778..5c44c47 100644 --- a/contrib/nest/core/src/expr/AddNode.test.cpp +++ b/contrib/nest/core/src/expr/AddNode.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/expr/AddNode.h" #include diff --git a/contrib/nest/core/src/expr/DerefNode.test.cpp b/contrib/nest/core/src/expr/DerefNode.test.cpp index 37543ad..e02a7de 100644 --- a/contrib/nest/core/src/expr/DerefNode.test.cpp +++ b/contrib/nest/core/src/expr/DerefNode.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/expr/DerefNode.h" #include diff --git a/contrib/nest/core/src/expr/Macro.cpp b/contrib/nest/core/src/expr/Macro.cpp index a2ceaa7..4e7a13e 100644 --- a/contrib/nest/core/src/expr/Macro.cpp +++ b/contrib/nest/core/src/expr/Macro.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/expr/Macro.h" // This file checkes the self-completeness of 'nest/expr/Macro.h'. diff --git a/contrib/nest/core/src/expr/MulNode.test.cpp b/contrib/nest/core/src/expr/MulNode.test.cpp index 4c4f974..b2d2947 100644 --- a/contrib/nest/core/src/expr/MulNode.test.cpp +++ b/contrib/nest/core/src/expr/MulNode.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/expr/MulNode.h" #include diff --git a/contrib/nest/core/src/expr/Node.cpp b/contrib/nest/core/src/expr/Node.cpp index 2c515e1..0c16242 100644 --- a/contrib/nest/core/src/expr/Node.cpp +++ b/contrib/nest/core/src/expr/Node.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/expr/Node.h" // This file checkes the self-completeness of 'nest/expr/Node.h'. diff --git a/contrib/nest/core/src/expr/Subscript.test.cpp b/contrib/nest/core/src/expr/Subscript.test.cpp index 104373a..2f187b8 100644 --- a/contrib/nest/core/src/expr/Subscript.test.cpp +++ b/contrib/nest/core/src/expr/Subscript.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/expr/Subscript.h" #include "nest/expr/VarNode.h" diff --git a/contrib/nest/core/src/expr/VarNode.test.cpp b/contrib/nest/core/src/expr/VarNode.test.cpp index 810490c..e8b2764 100644 --- a/contrib/nest/core/src/expr/VarNode.test.cpp +++ b/contrib/nest/core/src/expr/VarNode.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/expr/VarNode.h" #include diff --git a/contrib/nest/core/src/expr/Visitor.cpp b/contrib/nest/core/src/expr/Visitor.cpp index b423fd1..531e689 100644 --- a/contrib/nest/core/src/expr/Visitor.cpp +++ b/contrib/nest/core/src/expr/Visitor.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/expr/Visitor.h" // This file checkes the self-completeness of 'nest/expr/Visitor.h'. diff --git a/contrib/nest/core/src/stmt/Macro.cpp b/contrib/nest/core/src/stmt/Macro.cpp index cae5031..99adb43 100644 --- a/contrib/nest/core/src/stmt/Macro.cpp +++ b/contrib/nest/core/src/stmt/Macro.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/stmt/Macro.h" // This file checkes the self-completeness of 'nest/stmt/Macro.h'. diff --git a/contrib/nest/core/src/stmt/Node.cpp b/contrib/nest/core/src/stmt/Node.cpp index a0bb830..6265778 100644 --- a/contrib/nest/core/src/stmt/Node.cpp +++ b/contrib/nest/core/src/stmt/Node.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/stmt/Node.h" // This file checkes the self-completeness of 'nest/stmt/Node.h'. diff --git a/contrib/nest/core/src/stmt/PushNode.test.cpp b/contrib/nest/core/src/stmt/PushNode.test.cpp index 3168350..a54efbb 100644 --- a/contrib/nest/core/src/stmt/PushNode.test.cpp +++ b/contrib/nest/core/src/stmt/PushNode.test.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/stmt/PushNode.h" #include diff --git a/contrib/nest/core/src/stmt/Visitor.cpp b/contrib/nest/core/src/stmt/Visitor.cpp index 62cca1f..621379b 100644 --- a/contrib/nest/core/src/stmt/Visitor.cpp +++ b/contrib/nest/core/src/stmt/Visitor.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "nest/stmt/Visitor.h" // This file checkes the self-completeness of 'nest/stmt/Visitor.h'. -- 2.7.4