X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Ffetch_list_of_active_groups.h;h=b1039d384f2aa12a2061f92618894a8efff03b69;hp=113160d85f5b69f21357e132a11946e8dc9b0f05;hb=da6c03044674863de9f8a017010aa579b3b27a12;hpb=44f3ad694f8fe5dd76602d30c9bc1f3de9650f97 diff --git a/bigscreen/fetch_list_of_active_groups.h b/bigscreen/fetch_list_of_active_groups.h index 113160d..b1039d3 100644 --- a/bigscreen/fetch_list_of_active_groups.h +++ b/bigscreen/fetch_list_of_active_groups.h @@ -4,17 +4,17 @@ #include #include -struct Group { +struct SkeletonGroup { unsigned tournament, round, parallel; }; /* A transactor that fetches the current list of active groups. */ class FetchListOfActiveGroups : public pqxx::transactor<> { private: - std::vector *active; + std::vector *active; public: - FetchListOfActiveGroups(std::vector *active); + FetchListOfActiveGroups(std::vector *active); void operator() (pqxx::transaction<> &t); };