auto_bus/include/BusFCFSStrategy.h

23 lines
431 B
C
Raw Normal View History

//
// Created by ricardo on 2022/6/27.
//
#ifndef AUTO_BUS_GUI_BUS_FCFS_STRATEGY_H
#define AUTO_BUS_GUI_BUS_FCFS_STRATEGY_H
#include "BusStrategyBase.h"
2022-07-09 10:11:35 +08:00
/**
*
*/
class BusFCFSStrategy : public BusStrategyBase
{
int GetBusDirection() override;
bus_query_t *GetTargetQuery() override;
bus_query_t *HandleBTWQuery() override;
};
#endif //AUTO_BUS_GUI_BUS_FCFS_STRATEGY_H