Files
vimix/ImGuiVisitor.h
brunoherbelin 8424d9a6c7 work in progress: Mixer manage creation of sources
Views displayed independently
2020-04-19 19:28:51 +02:00

33 lines
699 B
C++

#ifndef IMGUIVISITOR_H
#define IMGUIVISITOR_H
#include "Visitor.h"
class ImGuiVisitor: public Visitor
{
public:
ImGuiVisitor();
// Elements of Scene
void visit(Scene& n);
void visit(Node& n);
void visit(Group& n);
void visit(Switch& n);
void visit(Animation& n);
void visit(Primitive& n);
void visit(ImageSurface&) {}
void visit(MediaSurface& n);
void visit(FrameBufferSurface& n);
void visit(LineStrip&) {}
void visit(LineSquare&) {}
void visit(LineCircle&) {}
void visit(Mesh&) {}
// Elements with attributes
void visit(MediaPlayer& n);
void visit(Shader& n);
void visit(ImageShader& n);
};
#endif // IMGUIVISITOR_H