ASAPCabinetFE
 
Loading...
Searching...
No Matches
table_launcher.h
Go to the documentation of this file.
1
9#ifndef TABLE_LAUNCHER_H
10#define TABLE_LAUNCHER_H
11
12#include "itable_launcher.h"
14
22public:
28 explicit TableLauncher(IConfigService* configService);
29
36 std::pair<int, float> launchTable(const TableData& table) override;
37
38private:
39 IConfigService* configService_;
40};
41
42#endif // TABLE_LAUNCHER_H
Interface for configuration services (forward declaration).
Definition iconfig_service.h:30
Interface for launching VPX tables.
Definition itable_launcher.h:21
Implements ITableLauncher for launching VPX tables.
Definition table_launcher.h:21
std::pair< int, float > launchTable(const TableData &table) override
Launches a VPX table.
Definition table_launcher.cpp:17
Defines the IConfigService interface for managing configuration in ASAPCabinetFE.
Defines the ITableLauncher interface for launching VPX tables.
Stores metadata and media paths for a VPX table.
Definition table_data.h:29