20 lines
469 B
C++
20 lines
469 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: ILoopSourceEx.hpp
|
|
Date: 2021-10-3
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Loop
|
|
{
|
|
class ILoopSourceEx : public ILoopSource
|
|
{
|
|
public:
|
|
virtual void OnPresleep() = 0;
|
|
virtual bool OnTrigger(AuUInt handle, bool atomicSignal) = 0;
|
|
virtual void OnFinishSleep() = 0;
|
|
virtual AuList<AuUInt> GetHandles() = 0;
|
|
};
|
|
} |