1 #ifndef _FETCH_AUXILLIARY_SCREENS_H
2 #define _FETCH_AUXILLIARY_SCREENS_H 1
4 #include <pqxx/transactor>
6 #include "widestring.h"
8 /* A transactor that fetches the current list of active groups. */
9 class FetchAuxilliaryScreens : public pqxx::transactor<> {
11 std::vector<widestring> *screens;
14 FetchAuxilliaryScreens(std::vector<widestring> *screens);
15 void operator() (pqxx::transaction<> &t);
18 #endif /* !defined(_FETCH_AUXILLIARY_SCREENS_H) */