mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-28 02:59:22 +03:00
2c3373d7d9
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
13 lines
431 B
C++
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
|