Free Electron
FrequencyResponseSystem.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 __moa_FrequencyResponseSystem_h__
8 #define __moa_FrequencyResponseSystem_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /// @brief Sweep through a range multiple times.
17  virtual public SystemI,
18  public Initialize<FrequencyResponseSystem>
19 {
20  public:
22 virtual ~FrequencyResponseSystem(void);
23  void initialize(void);
24 
25 virtual void start(const t_note_id &a_note_id);
26 
27 virtual void connectOrchestrator(sp<OrchestratorI> a_spOrchestrator);
28 
29 
30  private:
31  sp<OrchestratorI> m_spOrchestrator;
32 };
33 
34 } /* namespace ext */
35 } /* namespace fe */
36 
37 #endif /* __moa_FrequencyResponseSystem_h__ */
38 
39 
kernel
Definition: namespace.dox:3
virtual void connectOrchestrator(sp< OrchestratorI > a_spOrchestrator)
Callback for the System to register itself to the orchestrator.
Definition: FrequencyResponseSystem.cc:26
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Intrusive Smart Pointer.
Definition: src/core/ptr.h:53
Sweep through a range multiple times.
Definition: FrequencyResponseSystem.h:16
System Interface for MOA.
Definition: SystemI.h:18