11c44233b4
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
14 lines
224 B
C++
14 lines
224 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
class FrameBase;
|
|
|
|
void SetFrame(const std::shared_ptr<FrameBase> & frame);
|
|
|
|
class Initialisation
|
|
{
|
|
public:
|
|
Initialisation(const std::shared_ptr<FrameBase> & frame);
|
|
~Initialisation();
|
|
};
|