add license identifier
This commit is contained in:
parent
07f7170efb
commit
4e1c7af171
|
@ -1,8 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* PyScModule.cpp
|
* Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
*
|
*
|
||||||
* Created on: 08.06.2019
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
* Author: eyck
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "PyScModule.h"
|
#include "PyScModule.h"
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* PyScModule.h
|
* Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
*
|
*
|
||||||
* Created on: 08.06.2019
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
* Author: eyck
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef COMPONENTS_PYSCMODULE_H_
|
#ifndef COMPONENTS_PYSCMODULE_H_
|
||||||
|
|
|
@ -1 +1,7 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
#
|
||||||
|
|
||||||
from .sccppyy import *
|
from .sccppyy import *
|
|
@ -1,3 +1,9 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
#
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import cppyy
|
import cppyy
|
||||||
import os.path
|
import os.path
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
'''
|
#
|
||||||
Created on 02.01.2019
|
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
#
|
||||||
|
|
||||||
@author: eyck
|
|
||||||
'''
|
|
||||||
from cppyy import gbl as cpp
|
from cppyy import gbl as cpp
|
||||||
from builtins import getattr
|
from builtins import getattr
|
||||||
import re
|
import re
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -1,3 +1,9 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
#
|
||||||
|
|
||||||
from setuptools import setup, Extension
|
from setuptools import setup, Extension
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
#
|
||||||
|
|
||||||
import os.path
|
import os.path
|
||||||
import logging
|
import logging
|
||||||
import cppyy
|
import cppyy
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
'''
|
#
|
||||||
Created on 03.01.2019
|
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
#
|
||||||
|
|
||||||
@author: eyck
|
|
||||||
'''
|
|
||||||
from cppyy_backend._cppyy_generator import CppyyGenerator
|
from cppyy_backend._cppyy_generator import CppyyGenerator
|
||||||
from clang.cindex import Config
|
from clang.cindex import Config
|
||||||
from pprint import pprint
|
from pprint import pprint
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
#
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import cppyy
|
import cppyy
|
||||||
import os.path
|
import os.path
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
#
|
||||||
|
|
||||||
import cppyy
|
import cppyy
|
||||||
cppyy.add_include_path('.')
|
cppyy.add_include_path('.')
|
||||||
cppyy.load_library('../lib/libsystemc.so.2.3.3')
|
cppyy.load_library('../lib/libsystemc.so.2.3.3')
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
'''
|
#
|
||||||
Created on 01.01.2019
|
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
#
|
||||||
|
|
||||||
@author: eyck
|
|
||||||
'''
|
|
||||||
import unittest
|
import unittest
|
||||||
import json
|
import json
|
||||||
import cppyy
|
import cppyy
|
||||||
|
|
Loading…
Reference in New Issue