diff --git a/include/SQLiteCpp/Row.h b/include/SQLiteCpp/Row.h deleted file mode 100644 index 8a20a6c..0000000 --- a/include/SQLiteCpp/Row.h +++ /dev/null @@ -1,47 +0,0 @@ -/** - * @file Row.h - * @ingroup SQLiteCpp - * @brief TODO: - * - * Copyright (c) 2015 Shibao HONG (shibaohong@outlook.com) - * Copyright (c) 2015-2021 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) - */ -#pragma once - -#include - -#include - -// Forward declaration to avoid inclusion of in a header -struct sqlite3_stmt; -class Row; - -namespace SQLite -{ - - -class Row -{ -public: - Row(RowExecutor::TRowPtr apRow, std::size_t aID); - - /** - * @brief Test if the column value is NULL - * - * @param[in] aIndex Index of the column, starting at 0 - * - * @return true if the column value is NULL - * - * Throw an exception if the specified index is out of the [0, getColumnCount()) range. - */ - bool isColumnNull(const int aIndex) const; - -private: - RowExecutor::TRowWeakPtr mpRow; - std::size_t ID; -}; - -} // namespace SQLite diff --git a/src/Row.cpp b/src/Row.cpp deleted file mode 100644 index 0ddc0d1..0000000 --- a/src/Row.cpp +++ /dev/null @@ -1,25 +0,0 @@ -/** - * @file Row.cpp - * @ingroup SQLiteCpp - * @brief TODO: - * - * Copyright (c) 2015 Shibao HONG (shibaohong@outlook.com) - * Copyright (c) 2015-2021 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) - */ -#include - -#include - -#include - -namespace SQLite -{ - - - ; - - -} // namespace SQLite