1/*
2 SPDX-FileCopyrightText: 2017 Chinmoy Ranjan Pradhan <chinmoyrp65@gmail.com>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6
7#ifndef FILE_P_H
8#define FILE_P_H
9
10#include <cerrno>
11
12enum ActionType {
13 UNKNOWN,
14 CHMOD = 1,
15 CHOWN,
16 DEL,
17 MKDIR,
18 OPEN,
19 OPENDIR,
20 RENAME,
21 RMDIR,
22 SYMLINK,
23 UTIME,
24 COPY,
25};
26
27#endif
28

source code of kio/src/kioworkers/file/file_p.h