Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/stroke/StrokeIO.h
| /* SPDX-License-Identifier: GPL-2.0-or-later */ | /* SPDX-License-Identifier: GPL-2.0-or-later */ | ||||
| #pragma once | #pragma once | ||||
| /** \file | /** \file | ||||
| * \ingroup freestyle | * \ingroup freestyle | ||||
| * \brief Functions to manage I/O for the stroke | * \brief Functions to manage I/O for the stroke | ||||
| */ | */ | ||||
| #include <iostream> | #include <iostream> | ||||
| #include "Stroke.h" | #include "Stroke.h" | ||||
| #include "../system/FreestyleConfig.h" | |||||
| namespace Freestyle { | namespace Freestyle { | ||||
| ostream &operator<<(ostream &out, const StrokeAttribute &iStrokeAttribute); | ostream &operator<<(ostream &out, const StrokeAttribute &iStrokeAttribute); | ||||
| ostream &operator<<(ostream &out, const StrokeVertex &iStrokeVertex); | ostream &operator<<(ostream &out, const StrokeVertex &iStrokeVertex); | ||||
| ostream &operator<<(ostream &out, const Stroke &iStroke); | ostream &operator<<(ostream &out, const Stroke &iStroke); | ||||
| } /* namespace Freestyle */ | } /* namespace Freestyle */ | ||||