File indexing completed on 2025-01-19 03:53:09
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2018-05-20 0007 * Description : a tool to export images to Pinterest web service 0008 * 0009 * SPDX-FileCopyrightText: 2018 by Tarek Talaat <tarektalaat93 at gmail dot com> 0010 * 0011 * SPDX-License-Identifier: GPL-2.0-or-later 0012 * 0013 * ============================================================ */ 0014 0015 #ifndef DIGIKAM_P_ITEM_H 0016 #define DIGIKAM_P_ITEM_H 0017 0018 // Qt includes 0019 0020 #include <QString> 0021 0022 namespace DigikamGenericPinterestPlugin 0023 { 0024 0025 class PPhoto 0026 { 0027 public: 0028 0029 PPhoto() 0030 { 0031 } 0032 0033 QString title; 0034 }; 0035 0036 class PFolder 0037 { 0038 0039 public: 0040 0041 PFolder() 0042 { 0043 } 0044 0045 QString title; 0046 }; 0047 0048 } // namespace DigikamGenericPinterestPlugin 0049 0050 #endif // DIGIKAM_P_ITEM_H