File indexing completed on 2024-12-08 04:34:22
0001 /* 0002 SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "importexportutils.h" 0008 0009 QString ImportExportUtils::configPath() 0010 { 0011 return QStringLiteral("config"); 0012 } 0013 0014 QString ImportExportUtils::localPath() 0015 { 0016 return QStringLiteral("local"); 0017 } 0018 0019 QString ImportExportUtils::cachePath() 0020 { 0021 return QStringLiteral("cache"); 0022 } 0023 0024 QString ImportExportUtils::logsPath() 0025 { 0026 return QStringLiteral("logs"); 0027 } 0028 0029 QString ImportExportUtils::databasePath() 0030 { 0031 return QStringLiteral("database"); 0032 } 0033 0034 QDebug operator<<(QDebug d, const ImportExportUtils::AccountImportExportInfo &t) 0035 { 0036 d << "path " << t.path; 0037 d << "accountName " << t.accountName; 0038 return d; 0039 }