* adding XML, CmakeLists, and interfaces. * removing Dict, List from typing imports. * Normalizing imports.
19 lines
462 B
Python
19 lines
462 B
Python
from Base.Metadata import export
|
|
|
|
from App.DocumentObjectGroup import DocumentObjectGroup
|
|
|
|
@export(
|
|
Father="DocumentObjectGroupPy",
|
|
Name="ViewGroupPy",
|
|
Twin="ViewGroup",
|
|
TwinPointer="ViewGroup",
|
|
Include="Mod/Assembly/App/ViewGroup.h",
|
|
Namespace="Assembly",
|
|
FatherInclude="App/DocumentObjectGroupPy.h",
|
|
FatherNamespace="App",
|
|
)
|
|
class ViewGroupPy(DocumentObjectGroup):
|
|
"""
|
|
This class is a group subclass for joints.
|
|
"""
|