Files
novelWriter/nw/project/index.py
T
Veronica K. B. Olsen db2b95e4a5 Added NWIndex class file
2019-05-27 20:50:01 +02:00

29 lines
457 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -*- coding: utf-8 -*-
"""novelWriter Project Index
novelWriter Project Index
=============================
Class holding the index of tags
File History:
Created: 2019-05-27 [0.1.4]
"""
import logging
import nw
logger = logging.getLogger(__name__)
class NWIndex():
def __init__(self, theParent):
# Internal
self.theParent = theParent
self.mainConf = self.theParent.mainConf
return
# END Class NWIndex