X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fabstractsqlstorage.h;h=e422795be3b85a7781ffbaf284f51fb6f20c9d4d;hb=48017b680ede0dbfb121d1184dfbd13536cfc53f;hp=a0bdd23c8222ea3584c2019e9c93ec4017f01607;hpb=8961f348947fc55cc4bc769563684af3f2ea7ccc;p=quassel.git diff --git a/src/core/abstractsqlstorage.h b/src/core/abstractsqlstorage.h index a0bdd23c..e422795b 100644 --- a/src/core/abstractsqlstorage.h +++ b/src/core/abstractsqlstorage.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2019 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -21,6 +21,7 @@ #pragma once #include +#include #include #include @@ -95,7 +96,7 @@ protected: * * @return List of SQL query strings and filenames */ - QList setupQueries(); + std::vector setupQueries(); /** * Gets the collection of SQL upgrade queries and filenames for a given schema version @@ -103,7 +104,7 @@ protected: * @param ver SQL schema version * @return List of SQL query strings and filenames */ - QList upgradeQueries(int ver); + std::vector upgradeQueries(int ver); bool upgradeDb(); bool watchQuery(QSqlQuery& query); @@ -272,6 +273,7 @@ public: QString awaymessage; QString attachperform; QString detachperform; + QString skipcaps; NetworkId networkid; IdentityId identityid; int messagerateburstsize;