diff --git a/nw/gui/exports.py b/nw/gui/exports.py new file mode 100644 index 00000000..1e9babc8 --- /dev/null +++ b/nw/gui/exports.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +"""novelWriter GUI Export Tools + + novelWriter – GUI Export Tool +================================ + Tool for exporting project files to other formats + + File History: + Created: 2019-10-13 [0.2.3] + +""" + +import logging +import nw + +from os import path + +from PyQt5.QtWidgets import QDialog + +logger = logging.getLogger(__name__) + +class GuiExport(QDialog): + +# END Class GuiExport