Added model files
This commit is contained in:
parent
a97de91fc4
commit
4a3f9b4b9d
@ -1 +1 @@
|
|||||||
# imports:
|
# imports
|
||||||
|
1
src/cc_lang/model/__init__.py
Normal file
1
src/cc_lang/model/__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
# imports
|
1
src/cc_lang/model/abc/__init__.py
Normal file
1
src/cc_lang/model/abc/__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
# imports
|
4
src/cc_lang/model/abc/type.py
Normal file
4
src/cc_lang/model/abc/type.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
class Type:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
4
src/cc_lang/model/class.py
Normal file
4
src/cc_lang/model/class.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
class Class:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
4
src/cc_lang/model/function.py
Normal file
4
src/cc_lang/model/function.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
class Function:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
4
src/cc_lang/model/library.py
Normal file
4
src/cc_lang/model/library.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
class Library:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
1
src/cc_lang/model/type/__init__.py
Normal file
1
src/cc_lang/model/type/__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
# imports
|
4
src/cc_lang/model/type/bool.py
Normal file
4
src/cc_lang/model/type/bool.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
class Bool:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
4
src/cc_lang/model/type/number.py
Normal file
4
src/cc_lang/model/type/number.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
class Number:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
4
src/cc_lang/model/type/string.py
Normal file
4
src/cc_lang/model/type/string.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
class String:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
4
src/cc_lang/model/variable.py
Normal file
4
src/cc_lang/model/variable.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
class Variable:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
Loading…
Reference in New Issue
Block a user