Documentation

This commit is contained in:
Eelke Klein 2017-02-02 07:18:44 +01:00
parent fafda5a07f
commit ccae3685ac
2 changed files with 6 additions and 1 deletions

View file

@ -11,6 +11,11 @@
#include <vector>
#include <thread>
/** \brief Class that handles asynchronous execution of queries.
*
* Queries are passed to this class with a routine to call on completion
* when the result is on that routine is called.
*/
class ASyncDBConnection {
public:
enum class State {

View file

@ -22,7 +22,7 @@ typedef std::shared_ptr<ExplainTreeModelItem> ExplainTreeModelItemPtr;
* 5. loops
*/
/** \brief Model class for displaying the explain of a query in a tree like format.
/** \brief Class for the nodes in the QueryExplainModel
*/
class ExplainTreeModelItem: public std::enable_shared_from_this<ExplainTreeModelItem> {
public: