Added export dialog class

This commit is contained in:
Veronica K. B. Olsen
2019-10-13 12:18:17 +02:00
parent 46ff364116
commit dbd1964ff4
+24
View File
@@ -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