mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-20 13:38:57 -04:00
Moving CsvParser to format/
This commit is contained in:
parent
d2c74340a3
commit
ec81d2bc3f
5 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,6 @@ set(keepassx_SOURCES
|
||||||
core/Bootstrap.cpp
|
core/Bootstrap.cpp
|
||||||
core/Clock.cpp
|
core/Clock.cpp
|
||||||
core/Config.cpp
|
core/Config.cpp
|
||||||
core/CsvParser.cpp
|
|
||||||
core/CustomData.cpp
|
core/CustomData.cpp
|
||||||
core/Database.cpp
|
core/Database.cpp
|
||||||
core/DatabaseIcons.cpp
|
core/DatabaseIcons.cpp
|
||||||
|
@ -71,6 +70,7 @@ set(keepassx_SOURCES
|
||||||
crypto/kdf/AesKdf.cpp
|
crypto/kdf/AesKdf.cpp
|
||||||
crypto/kdf/Argon2Kdf.cpp
|
crypto/kdf/Argon2Kdf.cpp
|
||||||
format/CsvExporter.cpp
|
format/CsvExporter.cpp
|
||||||
|
format/CsvParser.cpp
|
||||||
format/HtmlExporter.cpp
|
format/HtmlExporter.cpp
|
||||||
format/KeePass1Reader.cpp
|
format/KeePass1Reader.cpp
|
||||||
format/KeePass2.cpp
|
format/KeePass2.cpp
|
||||||
|
|
|
@ -21,8 +21,8 @@
|
||||||
|
|
||||||
#include <QAbstractTableModel>
|
#include <QAbstractTableModel>
|
||||||
|
|
||||||
#include "core/CsvParser.h"
|
|
||||||
#include "core/Group.h"
|
#include "core/Group.h"
|
||||||
|
#include "format/CsvParser.h"
|
||||||
|
|
||||||
class CsvParserModel : public QAbstractTableModel, public CsvParser
|
class CsvParserModel : public QAbstractTableModel, public CsvParser
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QTemporaryFile>
|
#include <QTemporaryFile>
|
||||||
|
|
||||||
#include "core/CsvParser.h"
|
#include "format/CsvParser.h"
|
||||||
|
|
||||||
class CsvParser;
|
class CsvParser;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue