nextcloud-desktop/sqlite3_util.h
Juan Carlos Cornejo 2c3373d7d9 Contacted the author of the sqlite3_util.cpp function and found out
it was placed in the public domain. Made the changes to the header
and cpp file to reflect that.

Also renamed LICENSE to COPYING-GPL and made not of the overall
project license in COPYING
2012-02-15 08:55:13 +01:00

13 lines
431 B
C++

/******************************************************************************
* This header is placed in the public domain by Juan Carlos Cornejo Nov 10,
* 2011
*******************************************************************************/
#ifndef SQLITE3_UTIL_H
#define SQLITE3_UTIL_H
#include <QSqlDatabase>
namespace sqlite3_util {
bool sqliteDBMemFile( QSqlDatabase memdb, QString filename, bool save );
}
#endif