Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/legalnotice.h')
-rw-r--r--src/gui/legalnotice.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/gui/legalnotice.h b/src/gui/legalnotice.h
new file mode 100644
index 000000000..ba776a088
--- /dev/null
+++ b/src/gui/legalnotice.h
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) by Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * 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.
+ */
+
+#ifndef LEGALNOTICE_H
+#define LEGALNOTICE_H
+
+#include <QDialog>
+
+namespace OCC {
+class IgnoreListEditor;
+class SyncLogDialog;
+
+namespace Ui {
+ class LegalNotice;
+}
+
+/**
+ * @brief The LegalNotice class
+ * @ingroup gui
+ */
+class LegalNotice : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit LegalNotice(QDialog *parent = 0);
+ ~LegalNotice();
+
+private:
+ Ui::LegalNotice *_ui;
+};
+
+} // namespace OCC
+#endif // LEGALNOTICE_H