Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 123]
 refcount | The refcount namespace encapsulates code for a reference-counted smart pointer |
  Detail | All classes in this namespace are "internal details" of the classes in the refcount namespace, and should not be directly used by client code |
   ref_type | Internal detail for dereferencing pointers |
   ref_type< void > | Internal detail for dereferencing pointers |
  no_delete_finalizer | A no-op "destructor" for use with rcptr |
  plain_delete_finalizer | The default destructor/cleanup functor for use with rcptr<> |
  rcptr | A bare-bones non-intrusive reference-counted pointer type with the ability for the client to specify a finalization/destruction functor for the pointed-to type |
 sq3 | The sq3 namespace encapsulates an OO sqlite3 API very similar to the sqlite3x API, but this one uses no exception handling (i.e., it doesn't throw on errors) |
  sqlite3_finalizer | A specialized dtor to close sqlite3 handles, for use with refcount::rcptr<sqlite3,sqlite3_finalizer > |
  statement_reset_finalizer | A specialized dtor to reset (not close) sq3::statement objects, for use with refcount::rcptr<sqlite3,statement_reset_finalizer> |
  sqlite3_stmt_reset_finalizer | A specialized dtor to call reset sqlite3_stmt handles(), for use with refcount::rcptr<sqlite3,sqlite3_stmt_reset_finalizer> |
  sqlite3_stmt_finalizer | A specialized dtor to finalize sqlite3_stmt handles, for use with refcount::rcptr<sqlite3,sqlite3_stmt_finalizer> |
  database | Encapsulates a connection to an sqlite database |
  transaction | This type represents a transaction block in an SQL session |
  cursor | This type is for stepping through a db query result |
  statement | This class represents a prepared database statement |
  log_db | Log_db is a simple logging database for use with arbitrary applications |
  settings_db | Settings_db ia a very simplistic key/value pair database for use with the sq3 database layer |