Merge branch 'develop'

This commit is contained in:
Eyck Jentzsch 2021-01-04 19:56:20 +00:00
commit bfb69cc441
11 changed files with 55 additions and 18 deletions

View File

@ -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"

View File

@ -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_

View File

@ -1 +1,7 @@
#
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
#
# SPDX-License-Identifier: Apache-2.0
#
from .sccppyy import * from .sccppyy import *

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -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')

View File

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