blob: 4f8d929d0400c4fc2ebc34475d19f7deeabb9428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef PKE_AT_PKE_AT_DATA_STUB_HPP
#define PKE_AT_PKE_AT_DATA_STUB_HPP
#include "pke-at-data-interface.hpp"
class pke_at_data_stub : public pke_at_data_interface {
void init() const override;
void teardown() const override;
FPADIRT(pk_arr_t<di_service_type>) get_service_types() const override;
FPADIRT(pk_arr_t<di_plan>) get_plans_upcoming_from_service_type() const override;
FPADIRT(pk_arr_t<di_plan_item>) get_plan_items() const override;
// FPADIRT(pk_arr_t<pke_at_plan_details>) get_song_arrangements() const override;
};
#endif /* PKE_AT_PKE_AT_DATA_STUB_HPP */
|