Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
Diffstat (limited to 'source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h')
-rw-r--r--source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h120
1 files changed, 59 insertions, 61 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h b/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
index 715f78ab044..989e9e36faa 100644
--- a/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
+++ b/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
@@ -32,68 +32,66 @@ using namespace std;
namespace Freestyle {
-class ScenePrettyPrinter : public SceneVisitor
-{
-public:
- ScenePrettyPrinter(const string filename = "SceneLog.txt") : SceneVisitor()
- {
- if (!filename.empty())
- _ofs.open(filename.c_str());
- if (!_ofs.is_open())
- cerr << "Warning, unable to open file \"" << filename << "\"" << endl;
- _space = "";
- }
-
- virtual ~ScenePrettyPrinter()
- {
- if (_ofs.is_open())
- _ofs.close();
- }
-
-
- //
- // visitClass methods
- //
- //////////////////////////////////////////////
-
- VISIT_DECL(Node);
- VISIT_DECL(NodeShape);
- VISIT_DECL(NodeGroup);
- VISIT_DECL(NodeLight);
- VISIT_DECL(NodeDrawingStyle);
- VISIT_DECL(NodeTransform);
-
- VISIT_DECL(LineRep);
- VISIT_DECL(OrientedLineRep);
- VISIT_DECL(TriangleRep);
- VISIT_DECL(VertexRep);
- VISIT_DECL(IndexedFaceSet);
-
- virtual void visitNodeShapeBefore(NodeShape&);
- virtual void visitNodeShapeAfter(NodeShape&);
- virtual void visitNodeGroupBefore(NodeGroup&);
- virtual void visitNodeGroupAfter(NodeGroup&);
- virtual void visitNodeDrawingStyleBefore(NodeDrawingStyle&);
- virtual void visitNodeDrawingStyleAfter(NodeDrawingStyle&);
- virtual void visitNodeTransformBefore(NodeTransform&);
- virtual void visitNodeTransformAfter(NodeTransform&);
-
-protected:
- void increaseSpace()
- {
- _space += " ";
- }
-
- void decreaseSpace()
- {
- _space.erase(0, 2);
- }
-
-private:
- ofstream _ofs;
- string _space;
+class ScenePrettyPrinter : public SceneVisitor {
+ public:
+ ScenePrettyPrinter(const string filename = "SceneLog.txt") : SceneVisitor()
+ {
+ if (!filename.empty())
+ _ofs.open(filename.c_str());
+ if (!_ofs.is_open())
+ cerr << "Warning, unable to open file \"" << filename << "\"" << endl;
+ _space = "";
+ }
+
+ virtual ~ScenePrettyPrinter()
+ {
+ if (_ofs.is_open())
+ _ofs.close();
+ }
+
+ //
+ // visitClass methods
+ //
+ //////////////////////////////////////////////
+
+ VISIT_DECL(Node);
+ VISIT_DECL(NodeShape);
+ VISIT_DECL(NodeGroup);
+ VISIT_DECL(NodeLight);
+ VISIT_DECL(NodeDrawingStyle);
+ VISIT_DECL(NodeTransform);
+
+ VISIT_DECL(LineRep);
+ VISIT_DECL(OrientedLineRep);
+ VISIT_DECL(TriangleRep);
+ VISIT_DECL(VertexRep);
+ VISIT_DECL(IndexedFaceSet);
+
+ virtual void visitNodeShapeBefore(NodeShape &);
+ virtual void visitNodeShapeAfter(NodeShape &);
+ virtual void visitNodeGroupBefore(NodeGroup &);
+ virtual void visitNodeGroupAfter(NodeGroup &);
+ virtual void visitNodeDrawingStyleBefore(NodeDrawingStyle &);
+ virtual void visitNodeDrawingStyleAfter(NodeDrawingStyle &);
+ virtual void visitNodeTransformBefore(NodeTransform &);
+ virtual void visitNodeTransformAfter(NodeTransform &);
+
+ protected:
+ void increaseSpace()
+ {
+ _space += " ";
+ }
+
+ void decreaseSpace()
+ {
+ _space.erase(0, 2);
+ }
+
+ private:
+ ofstream _ofs;
+ string _space;
};
} /* namespace Freestyle */
-#endif // __FREESTYLE_SCENE_PRETTY_PRINTER_H__
+#endif // __FREESTYLE_SCENE_PRETTY_PRINTER_H__