inidocview.py 367 B

1234567891011121314151617
  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. import core.editor
  8. class INIDoc(core.editor.EditorDocument):
  9. def __init__(self):
  10. core.editor.EditorDocument.__init__(self)
  11. self._iniobj = None
  12. class INIView(core.editor.EditorView):
  13. pass