17 lines
290 B
C++
17 lines
290 B
C++
/**
|
|
* @file TriggerPanel.h
|
|
* @brief Trigger configuration and control bar.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace StreamHubClient {
|
|
class App;
|
|
|
|
/**
|
|
* @brief Render the trigger bar (collapsed/expanded region below toolbar).
|
|
*/
|
|
void RenderTriggerPanel(App& app);
|
|
|
|
} /* namespace StreamHubClient */
|