14 lines
317 B
C++
14 lines
317 B
C++
#pragma once
|
|
#include "Latency_Eager_Plot.h"
|
|
#include "Plot_p.h"
|
|
#include "Core/plot/Latency_Eager_Refresh_Strategy.h"
|
|
|
|
namespace renderive {
|
|
|
|
struct Latency_Eager_Plot_Private : Abs_Plot_Private {
|
|
Latency_Eager_Plot_Private();
|
|
Latency_Eager_Refresh_Strategy* latency_strategy{};
|
|
};
|
|
|
|
} // namespace renderive
|