Free Electron
SequencerI.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __signal_SequencerI_h__
8 #define __signal_SequencerI_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Timed record broadcaster
17 
18  @ingroup signal
19 *//***************************************************************************/
20 class FE_DL_EXPORT SequencerI:
21  virtual public Component,
22  public CastableAs<SequencerI>
23 {
24  public:
25 virtual U32 getCurrentTime(void) = 0;
26 virtual void setTime( U32 counter) = 0;
27 virtual Record add( sp<Layout> spLayout,
28  U32 startTime,
29  U32 interval) = 0;
30 virtual Record lookup( sp<Layout> spLayout,
31  U32 interval) = 0;
32 virtual bool remove( Record pulse) = 0;
33 };
34 
35 } /* namespace ext */
36 } /* namespace fe */
37 
38 #endif /* __signal_SequencerI_h__ */
39 
Timed record broadcaster.
Definition: SequencerI.h:20
kernel
Definition: namespace.dox:3
Reference to an instance of a Layout.
Definition: RecordSB.h:35
Base for all interfacable components.
Definition: Component.h:20
Per-class participation non-RTTI fallback dynamic casting mechanism.
Definition: Castable.h:192