2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2014-09-21 20:35:48 -04:00
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
/**
|
|
|
|
|
* Interface for AutomationController modules.
|
|
|
|
|
*/
|
|
|
|
|
class IAutomationControllerModule
|
|
|
|
|
: public IModuleInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the automation controller.
|
|
|
|
|
*
|
|
|
|
|
* @return a reference to the automation controller.
|
|
|
|
|
*/
|
|
|
|
|
virtual IAutomationControllerManagerRef GetAutomationController( ) = 0;
|
|
|
|
|
|
2014-09-21 20:35:48 -04:00
|
|
|
/** Init message bus usage. */
|
2014-03-14 14:13:41 -04:00
|
|
|
virtual void Init() = 0;
|
|
|
|
|
|
2014-09-21 20:35:48 -04:00
|
|
|
/** Tick function that will execute enabled tests for different device clusters. */
|
2014-03-14 14:13:41 -04:00
|
|
|
virtual void Tick() = 0;
|
|
|
|
|
};
|