From 56aa208f6249aac29c6df109525cea632c7b45e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Wed, 6 Mar 2013 17:10:01 +0100 Subject: [PATCH] copyright 2012-2013 --- TODO.txt | 4 +- example1.vcxproj | 221 +++++++++++++++++----------------- example1.vcxproj.filters | 95 ++++++++------- src/SQLiteC++/Column.cpp | 2 +- src/SQLiteC++/Column.h | 2 +- src/SQLiteC++/Database.cpp | 2 +- src/SQLiteC++/Database.h | 2 +- src/SQLiteC++/Exception.h | 2 +- src/SQLiteC++/SQLiteC++.h | 2 +- src/SQLiteC++/Statement.cpp | 2 +- src/SQLiteC++/Statement.h | 2 +- src/SQLiteC++/Transaction.cpp | 2 +- src/SQLiteC++/Transaction.h | 2 +- src/example1/main.cpp | 2 +- 14 files changed, 172 insertions(+), 170 deletions(-) diff --git a/TODO.txt b/TODO.txt index afae270..485ea61 100644 --- a/TODO.txt +++ b/TODO.txt @@ -4,10 +4,8 @@ C++11 explicit support Adding an encapsulation to the statement ref counter -copyright 2013 - - => V0.5.0 + using assert() in example program to provide a basic test coverage Missing features in v0.4.0: diff --git a/example1.vcxproj b/example1.vcxproj index 60c1f24..b559728 100644 --- a/example1.vcxproj +++ b/example1.vcxproj @@ -1,111 +1,112 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {920BA937-3773-4404-8C20-F13F3DEDDC89} - example1 - Win32Proj - - - - Application - Unicode - true - - - Application - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\ - $(Configuration)\ - true - $(SolutionDir)$(Configuration)\ - $(Configuration)\ - false - - - - Disabled - src/sqlite3;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - $(SolutionDir)$(Configuration)\sqlite3.lib;%(AdditionalDependencies) - true - Console - MachineX86 - - - - - MaxSpeed - true - src/sqlite3;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - true - Console - true - true - MachineX86 - - - - - - - - - - - - - - - - - - - {f9bf2ec1-c5e7-43d8-944d-dc5e2df1f976} - false - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + + {920BA937-3773-4404-8C20-F13F3DEDDC89} + example1 + Win32Proj + + + + Application + Unicode + true + + + Application + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + false + + + + Disabled + src/sqlite3;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + $(SolutionDir)$(Configuration)\sqlite3.lib;%(AdditionalDependencies) + true + Console + MachineX86 + + + + + MaxSpeed + true + src/sqlite3;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + true + Console + true + true + MachineX86 + + + + + + + + + + + + + + + + + + + + {f9bf2ec1-c5e7-43d8-944d-dc5e2df1f976} + false + + + + + \ No newline at end of file diff --git a/example1.vcxproj.filters b/example1.vcxproj.filters index fa39bc6..9dfa3a7 100644 --- a/example1.vcxproj.filters +++ b/example1.vcxproj.filters @@ -1,47 +1,50 @@ - - - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - SQLiteC++ - - - SQLiteC++ - - - SQLiteC++ - - - SQLiteC++ - - - example1 - - - - - SQLiteC++ - - - SQLiteC++ - - - SQLiteC++ - - - SQLiteC++ - - - SQLiteC++ - - + + + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + SQLiteC++ + + + SQLiteC++ + + + SQLiteC++ + + + SQLiteC++ + + + example1 + + + + + SQLiteC++ + + + SQLiteC++ + + + SQLiteC++ + + + SQLiteC++ + + + SQLiteC++ + + + SQLiteC++ + + \ No newline at end of file diff --git a/src/SQLiteC++/Column.cpp b/src/SQLiteC++/Column.cpp index a53cbd2..3a1491b 100644 --- a/src/SQLiteC++/Column.cpp +++ b/src/SQLiteC++/Column.cpp @@ -2,7 +2,7 @@ * @file Column.cpp * @brief Encapsulation of a Column in a Row of the result. * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/SQLiteC++/Column.h b/src/SQLiteC++/Column.h index 265a032..d8017bc 100644 --- a/src/SQLiteC++/Column.h +++ b/src/SQLiteC++/Column.h @@ -2,7 +2,7 @@ * @file Column.h * @brief Encapsulation of a Column in a Row of the result. * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/SQLiteC++/Database.cpp b/src/SQLiteC++/Database.cpp index 3694001..02a2944 100644 --- a/src/SQLiteC++/Database.cpp +++ b/src/SQLiteC++/Database.cpp @@ -2,7 +2,7 @@ * @file Database.cpp * @brief Management of a SQLite Database Connection. * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/SQLiteC++/Database.h b/src/SQLiteC++/Database.h index 09a53c1..d644f90 100644 --- a/src/SQLiteC++/Database.h +++ b/src/SQLiteC++/Database.h @@ -2,7 +2,7 @@ * @file Database.h * @brief Management of a SQLite Database Connection. * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/SQLiteC++/Exception.h b/src/SQLiteC++/Exception.h index a768879..cb04bde 100644 --- a/src/SQLiteC++/Exception.h +++ b/src/SQLiteC++/Exception.h @@ -2,7 +2,7 @@ * @file Exception.h * @brief Encapsulation of the error message from SQLite3 on a std::runtime_error. * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/SQLiteC++/SQLiteC++.h b/src/SQLiteC++/SQLiteC++.h index 56d676f..f6bf9d6 100644 --- a/src/SQLiteC++/SQLiteC++.h +++ b/src/SQLiteC++/SQLiteC++.h @@ -2,7 +2,7 @@ * @file SQLiteC++.h * @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files. * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/SQLiteC++/Statement.cpp b/src/SQLiteC++/Statement.cpp index da84164..4b85143 100644 --- a/src/SQLiteC++/Statement.cpp +++ b/src/SQLiteC++/Statement.cpp @@ -2,7 +2,7 @@ * @file Statement.cpp * @brief A prepared SQLite Statement is a compiled SQL query ready to be executed. * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/SQLiteC++/Statement.h b/src/SQLiteC++/Statement.h index 30e57b9..2311f14 100644 --- a/src/SQLiteC++/Statement.h +++ b/src/SQLiteC++/Statement.h @@ -2,7 +2,7 @@ * @file Statement.h * @brief A prepared SQLite Statement is a compiled SQL query ready to be executed. * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/SQLiteC++/Transaction.cpp b/src/SQLiteC++/Transaction.cpp index 627f503..9c5ad96 100644 --- a/src/SQLiteC++/Transaction.cpp +++ b/src/SQLiteC++/Transaction.cpp @@ -2,7 +2,7 @@ * @file Transaction.cpp * @brief A Transaction is way to group multiple SQL statements into an atomic secured operation. * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/SQLiteC++/Transaction.h b/src/SQLiteC++/Transaction.h index 813025c..64119d9 100644 --- a/src/SQLiteC++/Transaction.h +++ b/src/SQLiteC++/Transaction.h @@ -2,7 +2,7 @@ * @file Transaction.h * @brief A Transaction is way to group multiple SQL statements into an atomic secured operation. * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/example1/main.cpp b/src/example1/main.cpp index bf960a4..caf8dce 100644 --- a/src/example1/main.cpp +++ b/src/example1/main.cpp @@ -4,7 +4,7 @@ * * Demonstrate how-to use the SQLite++ wrapper * - * Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT)