mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-04 13:23:26 +01:00
b1264ef1e3
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
18 lines
367 B
Python
Executable File
18 lines
367 B
Python
Executable File
## @file
|
|
#
|
|
# Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
|
|
import core.editor
|
|
|
|
class INIDoc(core.editor.EditorDocument):
|
|
def __init__(self):
|
|
core.editor.EditorDocument.__init__(self)
|
|
self._iniobj = None
|
|
|
|
|
|
class INIView(core.editor.EditorView):
|
|
pass
|