00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #ifndef EXPORT_DELIMITER_H 00008 #define EXPORT_DELIMITER_H 00009 00010 #include <QString> 00011 00014 enum ExportDelimiter { 00015 EXPORT_DELIMITER_COMMA, 00016 EXPORT_DELIMITER_SPACE, 00017 EXPORT_DELIMITER_TAB, 00018 EXPORT_DELIMITER_SEMICOLON 00019 }; 00020 00021 extern QString exportDelimiterToString (ExportDelimiter exportDelimiter); // Text appearing in logging/debugging 00022 extern QString exportDelimiterToText (ExportDelimiter exportDelimiter, 00023 bool isGnuplot); // Text appearing in exported file 00024 00025 #endif // EXPORT_DELIMITER_H