Q4Wine
2.0
Q4Wine is a Qt GUI for Wine.
|
#include <stdint.h>
#include <sqlite3.h>
#include <string>
#include <memory>
#include <iostream>
#include <initializer_list>
#include <typeinfo>
#include <algorithm>
#include <map>
#include <vector>
#include <utility>
#include "src/lib/defines.hpp"
Go to the source code of this file.
Classes | |
class | q4wine::lib::DBEngine |
q4wine's SQLite3 engine warper. This class provides basic common SQL workflow, like making SQL queries, retrieving and inserting data. More... | |
Namespaces | |
q4wine | |
q4wine::lib | |
Typedefs | |
typedef std::map< std::string, std::string > | q4wine::lib::result |
A map that represents SQL result. The key is row name, the value is row value. More... | |
typedef std::pair< std::string, std::string > | q4wine::lib::result_p |
typedef std::vector< result > | q4wine::lib::rows |
An a vector of resuls. More... | |