commit c047c3359c41607d62318e0ea91a4642865d107e
Author: Christian Ehringfeld <c.ehringfeld@t-online.de>
Date:   Fri Aug 7 21:09:21 2015 +0200

    license stuff

diff --git a/samples/example/main.cpp b/samples/example/main.cpp
index 283388c..8d7f31c 100644
--- a/samples/example/main.cpp
+++ b/samples/example/main.cpp
@@ -24,7 +24,6 @@ int main(int argc, char *argv[]) {
     CuteEntityManager::EntityManager *e = new
 //    CuteEntityManager::EntityManager("QSQLITE",
 //                                     QDir::currentPath() + "/db.sqlite", "", "", "", 0, true);
-    //QSqlDatabase db = QSqlDatabase()
     CuteEntityManager::EntityManager("QSQLITE",
                                      ":memory:");
     SqliteBackupProcessor *sqliteproc = new SqliteBackupProcessor(e->getDb(),
diff --git a/src/expression.cpp b/src/expression.cpp
index 82ddc17..eb4117d 100644
--- a/src/expression.cpp
+++ b/src/expression.cpp
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2015 Christian Ehringfeld <c.ehringfeld@t-online.de>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
 #include "expression.h"
 using namespace CuteEntityManager;
 Expression::Expression() {
diff --git a/src/sqlitebackupprocessor.cpp b/src/sqlitebackupprocessor.cpp
index bc592ba..aea20da 100644
--- a/src/sqlitebackupprocessor.cpp
+++ b/src/sqlitebackupprocessor.cpp
@@ -1,3 +1,18 @@
+/*
+ * Copyright (C) 2015 Christian Ehringfeld <c.ehringfeld@t-online.de>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
 #include "sqlitebackupprocessor.h"
 #include <sqlite3.h>
 
@@ -9,8 +24,8 @@ SqliteBackupProcessor::SqliteBackupProcessor(QSharedPointer<Database> database,
 }
 
 SqliteBackupProcessor::~SqliteBackupProcessor() {
-
 }
+
 QSharedPointer<Database> SqliteBackupProcessor::getDatabase() const {
     return database;
 }
@@ -103,6 +118,3 @@ bool SqliteBackupProcessor::sqliteDBMemFile(bool save, QString fileName) {
     }
     return state;
 }
-
-
-
diff --git a/src/sqlitebackupprocessor.h b/src/sqlitebackupprocessor.h
index f2dc9e2..9b6a579 100644
--- a/src/sqlitebackupprocessor.h
+++ b/src/sqlitebackupprocessor.h
@@ -1,3 +1,18 @@
+/*
+ * Copyright (C) 2015 Christian Ehringfeld <c.ehringfeld@t-online.de>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
 #ifndef SQLITEBACKUPPROCESSOR_H
 #define SQLITEBACKUPPROCESSOR_H
 
