ASAPCabinetFE
 
Loading...
Searching...
No Matches
itable_launcher.h
Go to the documentation of this file.
1
8#ifndef ITABLE_LAUNCHER_H
9#define ITABLE_LAUNCHER_H
10
11#include "tables/table_data.h"
12#include <string>
13#include <utility>
14
22public:
23 virtual ~ITableLauncher() = default;
24
33 virtual std::pair<int, float> launchTable(const TableData& table) = 0;
34};
35
36#endif // ITABLE_LAUNCHER_H
Interface for launching VPX tables.
Definition itable_launcher.h:21
virtual std::pair< int, float > launchTable(const TableData &table)=0
Launches a VPX table.
Stores metadata and media paths for a VPX table.
Definition table_data.h:29
Defines the TableData struct for storing VPX table metadata and media paths.