Doxygen group name without the trailing ++

This commit is contained in:
Sébastien Rombauts 2013-03-15 15:46:11 +01:00
parent 4ee32ec736
commit 83a3ca6f37
10 changed files with 18 additions and 11 deletions

View File

@ -1,7 +1,7 @@
/**
* @file Column.cpp
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
* @ingroup SQLiteC++
* @ingroup SQLiteCpp
*
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*

View File

@ -1,7 +1,7 @@
/**
* @file Column.h
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
* @ingroup SQLiteC++
* @ingroup SQLiteCpp
*
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*

View File

@ -1,7 +1,7 @@
/**
* @file Database.cpp
* @brief Management of a SQLite Database Connection.
* @ingroup SQLiteC++
* @ingroup SQLiteCpp
*
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*

View File

@ -1,7 +1,7 @@
/**
* @file Database.h
* @brief Management of a SQLite Database Connection.
* @ingroup SQLiteC++
* @ingroup SQLiteCpp
*
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*

View File

@ -1,7 +1,7 @@
/**
* @file Exception.h
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
* @ingroup SQLiteC++
* @ingroup SQLiteCpp
*
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*

View File

@ -1,20 +1,27 @@
/**
* @file SQLiteC++.h
* @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files.
* @ingroup SQLiteC++
* @ingroup SQLiteCpp
*
* Include this main header file in your project to gain access to all functionality provided by the wrapper.
*
* 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)
*/
/**
* @defgroup SQLiteCpp SQLiteC++
* @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files.
*/
#pragma once
// SQLiteC++.h requires sqlite3, and the corresponding library header
#include "sqlite3.h"
#include <sqlite3.h>
// Include useful headers of SQLiteC++
#include "Exception.h"
#include "Database.h"
#include "Statement.h"
#include "Column.h"

View File

@ -1,7 +1,7 @@
/**
* @file Statement.cpp
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
* @ingroup SQLiteC++
* @ingroup SQLiteCpp
*
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*

View File

@ -1,7 +1,7 @@
/**
* @file Statement.h
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
* @ingroup SQLiteC++
* @ingroup SQLiteCpp
*
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*

View File

@ -1,7 +1,7 @@
/**
* @file Transaction.cpp
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
* @ingroup SQLiteC++
* @ingroup SQLiteCpp
*
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*

View File

@ -1,7 +1,7 @@
/**
* @file Transaction.h
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
* @ingroup SQLiteC++
* @ingroup SQLiteCpp
*
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*