1## @file
2#
3# Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
4#
5# SPDX-License-Identifier: BSD-2-Clause-Patent
6#
7
8import core.editor
9
10class INIDoc(core.editor.EditorDocument):
11    def __init__(self):
12        core.editor.EditorDocument.__init__(self)
13        self._iniobj = None
14
15
16class INIView(core.editor.EditorView):
17    pass
18