${CMAKE_CURRENT_LIST_DIR}/utility.cpp
${CMAKE_CURRENT_LIST_DIR}/remotepermissions.cpp
${CMAKE_CURRENT_LIST_DIR}/vfs.cpp
+ ${CMAKE_CURRENT_LIST_DIR}/pinstate.cpp
${CMAKE_CURRENT_LIST_DIR}/plugin.cpp
${CMAKE_CURRENT_LIST_DIR}/syncfilestatus.cpp
)
--- /dev/null
+/*
+ * Copyright (C) by Hannah von Reth <hannah.vonreth@owncloud.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * for more details.
+ */
+
+#include "pinstate.h"
+#include "moc_pinstate.cpp"
#include "ocsynclib.h"
+#include <QObject>
+
namespace OCC {
+namespace PinStateEnums {
+OCSYNC_EXPORT Q_NAMESPACE
+
/** Determines whether items should be available locally permanently or not
*
* The idea is that files and folders can be marked with the user intent
*/
Unspecified = 3,
};
+Q_ENUM_NS(PinState);
/** A user-facing version of PinState.
*
*/
OnlineOnly = 4,
};
+Q_ENUM_NS(VfsItemAvailability)
+}
+using namespace PinStateEnums;
}