14 lines
286 B
C++
14 lines
286 B
C++
#pragma once
|
|
#include "Explicit_Plot.h"
|
|
#include "Plot_p.h"
|
|
#include "Core/flow/explicit/Explicit_Frame_Flow.h"
|
|
|
|
namespace renderive {
|
|
|
|
struct Explicit_Plot_Private : Abs_Plot_Private {
|
|
Explicit_Plot_Private();
|
|
Explicit_Frame_Flow* explicit_flow{};
|
|
};
|
|
|
|
} // namespace renderive
|