File: ICommandQueue.h

package info (click to toggle)
vdr-plugin-vnsiserver 1%3A1.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 728 kB
  • sloc: ansic: 12,855; makefile: 87; sh: 13
file content (23 lines) | stat: -rw-r--r-- 303 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * CommandQueue.h
 *
 *  Created on: 26.12.2020
 *      Author: mdrechsler
 */
#include <chrono>

#include "tools.h"

#pragma once

VNSI_DECLARE_POINTER( ICommand );

class ICommandQueue
{
public:
	virtual void
	enqueue( const ICommandSharedPtr& command ) = 0;


	VNSI_INTERFACE( ICommandQueue );
};