20 lines
484 B
Python
20 lines
484 B
Python
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
from Base.Metadata import export
|
|
from Spreadsheet.Sheet import Sheet
|
|
|
|
@export(
|
|
Include="Mod/Assembly/App/BomObject.h",
|
|
FatherInclude="Mod/Spreadsheet/App/SheetPy.h",
|
|
Namespace="Assembly",
|
|
)
|
|
class BomObject(Sheet):
|
|
"""
|
|
This class is the BOM object of assemblies, it derives from Spreadsheet::Sheet.
|
|
|
|
Author: Ondsel (development@ondsel.com)
|
|
License: LGPL-2.1-or-later
|
|
"""
|