22 lines
677 B
C++
22 lines
677 B
C++
#pragma once
|
|
#include "../Diagnostics/Performance_Shower.h"
|
|
#include "Afterglow.h"
|
|
#include "Audio_Frequency.h"
|
|
#include "Hover_Info.h"
|
|
#include "../base/Interpolation.h"
|
|
#include "Multi_Select_Rect.h"
|
|
#include "Planisphere.h"
|
|
#include "Spectrum.h"
|
|
#include "Sweep_Frequency.h"
|
|
#include "Waterfall.h"
|
|
|
|
namespace renderive {
|
|
class Abs_Plot;
|
|
class Performance_Shower;
|
|
LIB_DECL std::shared_ptr<Performance_Shower> attach_performance_shower(Abs_Plot& plot);
|
|
LIB_DECL void detach_performance_shower(Abs_Plot& plot);
|
|
LIB_DECL bool performance_shower_enabled(const Abs_Plot& plot);
|
|
LIB_DECL void set_performance_shower_enabled(Abs_Plot& plot, bool enabled);
|
|
} // namespace renderive
|
|
|