From db2b95e4a52b60d004e504552fa0ad5053bf2aab Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" Date: Mon, 27 May 2019 20:50:01 +0200 Subject: [PATCH] Added NWIndex class file --- nw/project/index.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 nw/project/index.py diff --git a/nw/project/index.py b/nw/project/index.py new file mode 100644 index 00000000..0efe3608 --- /dev/null +++ b/nw/project/index.py @@ -0,0 +1,28 @@ +# -*- 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