Moving CsvParser to format/

This commit is contained in:
louib 2020-10-08 19:09:42 -04:00 committed by Jonathan White
parent d2c74340a3
commit ec81d2bc3f
5 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,6 @@ set(keepassx_SOURCES
core/Bootstrap.cpp
core/Clock.cpp
core/Config.cpp
core/CsvParser.cpp
core/CustomData.cpp
core/Database.cpp
core/DatabaseIcons.cpp
@ -71,6 +70,7 @@ set(keepassx_SOURCES
crypto/kdf/AesKdf.cpp
crypto/kdf/Argon2Kdf.cpp
format/CsvExporter.cpp
format/CsvParser.cpp
format/HtmlExporter.cpp
format/KeePass1Reader.cpp
format/KeePass2.cpp

View File

@ -21,8 +21,8 @@
#include <QAbstractTableModel>
#include "core/CsvParser.h"
#include "core/Group.h"
#include "format/CsvParser.h"
class CsvParserModel : public QAbstractTableModel, public CsvParser
{

View File

@ -22,7 +22,7 @@
#include <QFile>
#include <QTemporaryFile>
#include "core/CsvParser.h"
#include "format/CsvParser.h"
class CsvParser;