Warning, file /frameworks/kio/src/core/ksambasharedata_p.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-FileCopyrightText: 2010 Rodrigo Belem <rclbelem@gmail.com> 0003 0004 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0005 */ 0006 0007 #ifndef ksambasharedata_p_h 0008 #define ksambasharedata_p_h 0009 0010 #include <QSharedData> 0011 0012 class QString; 0013 0014 class KSambaShareDataPrivate : public QSharedData 0015 { 0016 public: 0017 KSambaShareDataPrivate() 0018 { 0019 } 0020 KSambaShareDataPrivate(const KSambaShareDataPrivate &other) 0021 : QSharedData(other) 0022 , name(other.name) 0023 , path(other.path) 0024 , comment(other.comment) 0025 , acl(other.acl) 0026 , guestPermission(other.guestPermission) 0027 { 0028 } 0029 0030 ~KSambaShareDataPrivate() 0031 { 0032 } 0033 0034 QString name; 0035 QString path; 0036 QString comment; 0037 QString acl; 0038 QString guestPermission; 0039 }; 0040 0041 #endif