Minor comment style cleanups

This commit is contained in:
Sébastien Rombauts 2016-07-16 17:04:49 +02:00
parent 7983b81f75
commit 223c14139b
5 changed files with 20 additions and 19 deletions

View File

@ -130,7 +130,7 @@ private:
/// @}
private:
sqlite3_backup* mpSQLiteBackup; //!< Pointer to SQLite Database Backup Handle
sqlite3_backup* mpSQLiteBackup; ///< Pointer to SQLite Database Backup Handle
};
} // namespace SQLite

View File

@ -239,8 +239,8 @@ public:
#endif
private:
Statement::Ptr mStmtPtr; //!< Shared Pointer to the prepared SQLite Statement Object
int mIndex; //!< Index of the column in the row of result, starting at 0
Statement::Ptr mStmtPtr; ///< Shared Pointer to the prepared SQLite Statement Object
int mIndex; ///< Index of the column in the row of result, starting at 0
};
/**

View File

@ -379,8 +379,8 @@ private:
}
private:
sqlite3* mpSQLite; //!< Pointer to SQLite Database Connection Handle
std::string mFilename; //!< UTF-8 filename used to open the database
sqlite3* mpSQLite; ///< Pointer to SQLite Database Connection Handle
std::string mFilename; ///< UTF-8 filename used to open the database
};

View File

@ -546,7 +546,7 @@ private:
}
private:
/// @{ Unused/forbidden copy operator
/// @{ Unused/forbidden copy/assignment operator
Ptr& operator=(const Ptr& aPtr);
/// @}
@ -599,6 +599,7 @@ private:
}
private:
/// Map of columns index by name (mutable so getColumnIndex can be const)
typedef std::map<std::string, int> TColumnNames;
private:

View File

@ -69,8 +69,8 @@ private:
/// @}
private:
Database& mDatabase; //!< Reference to the SQLite Database Connection
bool mbCommited; //!< True when commit has been called
Database& mDatabase; ///< Reference to the SQLite Database Connection
bool mbCommited; ///< True when commit has been called
};