File: ICommand.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 (25 lines) | stat: -rw-r--r-- 276 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
24
25
/*
 * ICommand.h
 *
 *  Created on: 26.12.2020
 *      Author: mdrechsler
 */

#pragma once

#include "tools.h"

class ICommandVisitor;

class ICommand
{
public:
	/**
	 * Execute a command
	 */
	virtual void
	execute( ICommandVisitor& ) = 0;


	VNSI_INTERFACE( ICommand );
};