File indexing completed on 2024-05-12 04:39:41

0001 /*
0002     SPDX-FileCopyrightText: 2014 Kevin Funk <kfunk@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef MAKEFILERESOLVER_HELPER_H
0008 #define MAKEFILERESOLVER_HELPER_H
0009 
0010 class QString;
0011 class QDateTime;
0012 
0013 namespace Helper {
0014 
0015 /// Wrapper for utimes(...) from time.h
0016 int changeAccessAndModificationTime(const QString& filename,
0017                                     const QDateTime& accessTime, const QDateTime& modificationTime);
0018 
0019 }
0020 
0021 #endif