15 lines
336 B
C++
15 lines
336 B
C++
#pragma once
|
|
|
|
#include <pdfengine/content_object.hpp>
|
|
#include <pdfengine/display_list.hpp>
|
|
|
|
namespace pdfengine {
|
|
|
|
// PathObjectInterpreter converts a PathObject into DisplayList commands
|
|
class PathObjectInterpreter {
|
|
public:
|
|
static void interpret(const PathObject& pathObj, DisplayList& displayList);
|
|
};
|
|
|
|
} // namespace pdfengine
|