From 74c2fc736427e271780b891b9fb975fa04e62d1e Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Tue, 2 Feb 2016 21:18:54 +0100 Subject: [PATCH] [DEV] replace 'include guard' with 'pragma once' --- esvg/Base.h | 6 +----- esvg/Circle.h | 7 ++----- esvg/Dimension.h | 8 ++------ esvg/Ellipse.h | 8 ++------ esvg/Group.h | 8 ++------ esvg/Line.h | 8 ++------ esvg/LinearGradient.h | 8 ++------ esvg/Path.h | 8 ++------ esvg/Polygon.h | 8 ++------ esvg/Polyline.h | 8 ++------ esvg/RadialGradient.h | 7 ++----- esvg/Rectangle.h | 8 ++------ esvg/Renderer.h | 7 ++----- esvg/Stroking.h | 6 +----- esvg/Text.h | 8 ++------ esvg/cap.h | 6 +----- esvg/debug.h | 5 +---- esvg/esvg.h | 8 ++------ esvg/gradientUnits.h | 7 +------ esvg/join.h | 5 +---- esvg/render/DynamicColor.h | 6 +----- esvg/render/Element.h | 6 +----- esvg/render/ElementBezierCurveTo.h | 6 +----- esvg/render/ElementBezierSmoothCurveTo.h | 5 +---- esvg/render/ElementClose.h | 6 +----- esvg/render/ElementCurveTo.h | 4 ---- esvg/render/ElementElliptic.h | 5 +---- esvg/render/ElementLineTo.h | 6 +----- esvg/render/ElementLineToH.h | 6 +----- esvg/render/ElementLineToV.h | 5 +---- esvg/render/ElementMoveTo.h | 6 +----- esvg/render/ElementSmoothCurveTo.h | 6 +----- esvg/render/ElementStop.h | 6 +----- esvg/render/Path.h | 5 +---- esvg/render/Point.h | 6 +----- esvg/render/PointList.h | 7 +------ esvg/render/Scanline.h | 5 +---- esvg/render/Segment.h | 5 +---- esvg/render/SegmentList.h | 6 +----- esvg/render/Weight.h | 5 +---- esvg/spreadMethod.h | 5 +---- test/main.h | 6 +----- 42 files changed, 55 insertions(+), 212 deletions(-) diff --git a/esvg/Base.h b/esvg/Base.h index 425c8cf..53fb2ae 100644 --- a/esvg/Base.h +++ b/esvg/Base.h @@ -10,8 +10,7 @@ #include #include -#ifndef __ESVG_BASE_H__ -#define __ESVG_BASE_H__ +#pragma once #include #include @@ -111,6 +110,3 @@ namespace esvg { void setId(const std::string& _newId); }; }; - -#endif - diff --git a/esvg/Circle.h b/esvg/Circle.h index 48f7963..934e60b 100644 --- a/esvg/Circle.h +++ b/esvg/Circle.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_CIRCLE_H__ -#define __ESVG_CIRCLE_H__ +#pragma once #include @@ -23,7 +21,6 @@ namespace esvg { virtual void display(int32_t _spacing); virtual void draw(esvg::Renderer& _myRenderer, mat2& _basicTrans, int32_t _level); }; -}; +} -#endif diff --git a/esvg/Dimension.h b/esvg/Dimension.h index 75cd997..58998e6 100644 --- a/esvg/Dimension.h +++ b/esvg/Dimension.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_DIMENSION_H__ -#define __ESVG_DIMENSION_H__ +#pragma once #include #include @@ -253,7 +251,5 @@ namespace esvg { } }; std::ostream& operator <<(std::ostream& _os, const esvg::Dimension1D& _obj); -}; - -#endif +} diff --git a/esvg/Ellipse.h b/esvg/Ellipse.h index ba12237..d00f83c 100644 --- a/esvg/Ellipse.h +++ b/esvg/Ellipse.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_ELLIPSE_H__ -#define __ESVG_ELLIPSE_H__ +#pragma once #include @@ -23,7 +21,5 @@ namespace esvg { virtual void display(int32_t _spacing); virtual void draw(esvg::Renderer& _myRenderer, mat2& _basicTrans, int32_t _level); }; -}; - -#endif +} diff --git a/esvg/Group.h b/esvg/Group.h index 74f5ff5..c063b5a 100644 --- a/esvg/Group.h +++ b/esvg/Group.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_GROUP_H__ -#define __ESVG_GROUP_H__ +#pragma once #include #include @@ -23,7 +21,5 @@ namespace esvg { virtual void display(int32_t spacing); virtual void draw(esvg::Renderer& _myRenderer, mat2& _basicTrans, int32_t _level); }; -}; - -#endif +} diff --git a/esvg/Line.h b/esvg/Line.h index 89b5e65..442292c 100644 --- a/esvg/Line.h +++ b/esvg/Line.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_LINE_H__ -#define __ESVG_LINE_H__ +#pragma once #include @@ -23,7 +21,5 @@ namespace esvg { virtual void display(int32_t _spacing); virtual void draw(esvg::Renderer& _myRenderer, mat2& _basicTrans, int32_t _level); }; -}; - -#endif +} diff --git a/esvg/LinearGradient.h b/esvg/LinearGradient.h index 7500e71..af7f519 100644 --- a/esvg/LinearGradient.h +++ b/esvg/LinearGradient.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_LINEAR_GRANDIENT_H__ -#define __ESVG_LINEAR_GRANDIENT_H__ +#pragma once #include #include @@ -36,7 +34,5 @@ namespace esvg { const esvg::Dimension& getPosition2(); const std::vector>>& getColors(esvg::Document* _document); }; -}; - -#endif +} diff --git a/esvg/Path.h b/esvg/Path.h index ae446f6..fb46acd 100644 --- a/esvg/Path.h +++ b/esvg/Path.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_PATH_H__ -#define __ESVG_PATH_H__ +#pragma once #include #include @@ -23,7 +21,5 @@ namespace esvg { virtual void display(int32_t _spacing); virtual void draw(esvg::Renderer& _myRenderer, mat2& _basicTrans, int32_t _level); }; -}; - -#endif +} diff --git a/esvg/Polygon.h b/esvg/Polygon.h index cc5b7be..c3e21df 100644 --- a/esvg/Polygon.h +++ b/esvg/Polygon.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_POLYGON_H__ -#define __ESVG_POLYGON_H__ +#pragma once #include #include @@ -30,7 +28,5 @@ namespace esvg { virtual void display(int32_t _spacing); virtual void draw(esvg::Renderer& _myRenderer, mat2& _basicTrans, int32_t _level); }; -}; - -#endif +} diff --git a/esvg/Polyline.h b/esvg/Polyline.h index 12bd0b0..6378166 100644 --- a/esvg/Polyline.h +++ b/esvg/Polyline.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_POLYLINE_H__ -#define __ESVG_POLYLINE_H__ +#pragma once #include #include @@ -23,7 +21,5 @@ namespace esvg { virtual void display(int32_t _spacing); virtual void draw(esvg::Renderer& _myRenderer, mat2& _basicTrans, int32_t _level); }; -}; - -#endif +} diff --git a/esvg/RadialGradient.h b/esvg/RadialGradient.h index 2161095..e9d1521 100644 --- a/esvg/RadialGradient.h +++ b/esvg/RadialGradient.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RADIAL_GRANDIENT_H__ -#define __ESVG_RADIAL_GRANDIENT_H__ +#pragma once #include #include @@ -38,6 +36,5 @@ namespace esvg { const esvg::Dimension1D& getRadius(); const std::vector>>& getColors(esvg::Document* _document); }; -}; +} -#endif diff --git a/esvg/Rectangle.h b/esvg/Rectangle.h index 943906d..f7b8062 100644 --- a/esvg/Rectangle.h +++ b/esvg/Rectangle.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RECTANGLE_H__ -#define __ESVG_RECTANGLE_H__ +#pragma once #include @@ -24,7 +22,5 @@ namespace esvg { virtual void display(int32_t _spacing); virtual void draw(esvg::Renderer& _myRenderer, mat2& _basicTrans, int32_t _level); }; -}; - -#endif +} diff --git a/esvg/Renderer.h b/esvg/Renderer.h index 39418d2..8e8281f 100644 --- a/esvg/Renderer.h +++ b/esvg/Renderer.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDERER_H__ -#define __ESVG_RENDERER_H__ +#pragma once #include #include @@ -72,6 +70,5 @@ namespace esvg { return m_document; } }; -}; +} -#endif diff --git a/esvg/Stroking.h b/esvg/Stroking.h index a7d5e16..8390edf 100644 --- a/esvg/Stroking.h +++ b/esvg/Stroking.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_STROKING_H__ -#define __ESVG_STROKING_H__ +#pragma once #include @@ -15,5 +13,3 @@ namespace esvg { }; -#endif - diff --git a/esvg/Text.h b/esvg/Text.h index 1b5dec4..1b1b0d7 100644 --- a/esvg/Text.h +++ b/esvg/Text.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_TEXT_H__ -#define __ESVG_TEXT_H__ +#pragma once #include @@ -19,7 +17,5 @@ namespace esvg { virtual bool parse(const std::shared_ptr& _element, mat2& _parentTrans, vec2& _sizeMax); virtual void display(int32_t _spacing); }; -}; - -#endif +} diff --git a/esvg/cap.h b/esvg/cap.h index 6d30c5d..6d4cd98 100644 --- a/esvg/cap.h +++ b/esvg/cap.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_CAP_H__ -#define __ESVG_CAP_H__ +#pragma once #include @@ -23,5 +21,3 @@ namespace esvg { std::ostream& operator <<(std::ostream& _os, enum esvg::cap _obj); } -#endif - diff --git a/esvg/debug.h b/esvg/debug.h index 4f49fd3..dd4bb85 100644 --- a/esvg/debug.h +++ b/esvg/debug.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_DEBUG_H__ -#define __ESVG_DEBUG_H__ +#pragma once #include @@ -40,5 +38,4 @@ namespace esvg { } \ } while (0) -#endif diff --git a/esvg/esvg.h b/esvg/esvg.h index 8796b04..3f86a42 100644 --- a/esvg/esvg.h +++ b/esvg/esvg.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_H__ -#define __ESVG_H__ +#pragma once #include #include @@ -95,7 +93,5 @@ namespace esvg { }; std::shared_ptr getReference(const std::string& _name); }; -}; - -#endif +} diff --git a/esvg/gradientUnits.h b/esvg/gradientUnits.h index 68eea5c..c45c991 100644 --- a/esvg/gradientUnits.h +++ b/esvg/gradientUnits.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_GRADIENT_UNIT_H__ -#define __ESVG_GRADIENT_UNIT_H__ +#pragma once #include @@ -21,6 +19,3 @@ namespace esvg { */ std::ostream& operator <<(std::ostream& _os, enum esvg::gradientUnits _obj); } - -#endif - diff --git a/esvg/join.h b/esvg/join.h index 934ee16..be9659d 100644 --- a/esvg/join.h +++ b/esvg/join.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_JOIN_H__ -#define __ESVG_JOIN_H__ +#pragma once #include @@ -23,5 +21,4 @@ namespace esvg { std::ostream& operator <<(std::ostream& _os, enum esvg::join _obj); } -#endif diff --git a/esvg/render/DynamicColor.h b/esvg/render/DynamicColor.h index 5c70a92..3df825e 100644 --- a/esvg/render/DynamicColor.h +++ b/esvg/render/DynamicColor.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_DYNAMIC_COLOR_H__ -#define __ESVG_RENDER_DYNAMIC_COLOR_H__ +#pragma once #include #include @@ -81,5 +79,3 @@ namespace esvg { } } -#endif - diff --git a/esvg/render/Element.h b/esvg/render/Element.h index 9cd0c3f..dba16f5 100644 --- a/esvg/render/Element.h +++ b/esvg/render/Element.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_H__ -#define __ESVG_RENDER_ELEMENT_H__ +#pragma once #include #include @@ -91,8 +89,6 @@ namespace esvg { std::ostream& operator <<(std::ostream& _os, enum esvg::render::path _obj); } -#endif - #include #include #include diff --git a/esvg/render/ElementBezierCurveTo.h b/esvg/render/ElementBezierCurveTo.h index c07834c..0ce91f9 100644 --- a/esvg/render/ElementBezierCurveTo.h +++ b/esvg/render/ElementBezierCurveTo.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_BEZIER_CURVE_TO_H__ -#define __ESVG_RENDER_ELEMENT_BEZIER_CURVE_TO_H__ +#pragma once #include #include @@ -24,5 +22,3 @@ namespace esvg { } } -#endif - diff --git a/esvg/render/ElementBezierSmoothCurveTo.h b/esvg/render/ElementBezierSmoothCurveTo.h index 96915d8..3a67fe9 100644 --- a/esvg/render/ElementBezierSmoothCurveTo.h +++ b/esvg/render/ElementBezierSmoothCurveTo.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_BEZIER_SMOOTH_CURVE_TO_H__ -#define __ESVG_RENDER_ELEMENT_BEZIER_SMOOTH_CURVE_TO_H__ +#pragma once #include #include @@ -24,5 +22,4 @@ namespace esvg { } } -#endif diff --git a/esvg/render/ElementClose.h b/esvg/render/ElementClose.h index 19fb583..5c5f04b 100644 --- a/esvg/render/ElementClose.h +++ b/esvg/render/ElementClose.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_CLOSE_H__ -#define __ESVG_RENDER_ELEMENT_CLOSE_H__ +#pragma once #include #include @@ -24,5 +22,3 @@ namespace esvg { } } -#endif - diff --git a/esvg/render/ElementCurveTo.h b/esvg/render/ElementCurveTo.h index 97e6382..b48ac12 100644 --- a/esvg/render/ElementCurveTo.h +++ b/esvg/render/ElementCurveTo.h @@ -6,8 +6,6 @@ * @license APACHE v2.0 (see license file) */ -#ifndef __ESVG_RENDER_ELEMENT_CURVE_TO_H__ -#define __ESVG_RENDER_ELEMENT_CURVE_TO_H__ #include #include @@ -24,5 +22,3 @@ namespace esvg { } } -#endif - diff --git a/esvg/render/ElementElliptic.h b/esvg/render/ElementElliptic.h index 98fd52c..7ebb149 100644 --- a/esvg/render/ElementElliptic.h +++ b/esvg/render/ElementElliptic.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_ELLIPTIC_H__ -#define __ESVG_RENDER_ELEMENT_ELLIPTIC_H__ +#pragma once #include #include @@ -33,4 +31,3 @@ namespace esvg { } } -#endif diff --git a/esvg/render/ElementLineTo.h b/esvg/render/ElementLineTo.h index 75e5423..260cd3c 100644 --- a/esvg/render/ElementLineTo.h +++ b/esvg/render/ElementLineTo.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_LINE_TO_H__ -#define __ESVG_RENDER_ELEMENT_LINE_TO_H__ +#pragma once #include #include @@ -24,5 +22,3 @@ namespace esvg { } } -#endif - diff --git a/esvg/render/ElementLineToH.h b/esvg/render/ElementLineToH.h index 51d4a37..8a5edc5 100644 --- a/esvg/render/ElementLineToH.h +++ b/esvg/render/ElementLineToH.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_LINE_TO_H_H__ -#define __ESVG_RENDER_ELEMENT_LINE_TO_H_H__ +#pragma once #include #include @@ -24,5 +22,3 @@ namespace esvg { } } -#endif - diff --git a/esvg/render/ElementLineToV.h b/esvg/render/ElementLineToV.h index 81923ec..a0b785c 100644 --- a/esvg/render/ElementLineToV.h +++ b/esvg/render/ElementLineToV.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_LINE_TO_V_H__ -#define __ESVG_RENDER_ELEMENT_LINE_TO_V_H__ +#pragma once #include #include @@ -24,5 +22,4 @@ namespace esvg { } } -#endif diff --git a/esvg/render/ElementMoveTo.h b/esvg/render/ElementMoveTo.h index f38678f..c5b4450 100644 --- a/esvg/render/ElementMoveTo.h +++ b/esvg/render/ElementMoveTo.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_MOVE_TO_H__ -#define __ESVG_RENDER_ELEMENT_MOVE_TO_H__ +#pragma once #include #include @@ -24,5 +22,3 @@ namespace esvg { } } -#endif - diff --git a/esvg/render/ElementSmoothCurveTo.h b/esvg/render/ElementSmoothCurveTo.h index f969019..584a998 100644 --- a/esvg/render/ElementSmoothCurveTo.h +++ b/esvg/render/ElementSmoothCurveTo.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_SMOOTH_CURVE_TO_H__ -#define __ESVG_RENDER_ELEMENT_SMOOTH_CURVE_TO_H__ +#pragma once #include #include @@ -24,5 +22,3 @@ namespace esvg { } } -#endif - diff --git a/esvg/render/ElementStop.h b/esvg/render/ElementStop.h index 75d9d15..a7718f6 100644 --- a/esvg/render/ElementStop.h +++ b/esvg/render/ElementStop.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_ELEMENT_STOP_H__ -#define __ESVG_RENDER_ELEMENT_STOP_H__ +#pragma once #include #include @@ -24,5 +22,3 @@ namespace esvg { } } -#endif - diff --git a/esvg/render/Path.h b/esvg/render/Path.h index 8c65362..b3eda53 100644 --- a/esvg/render/Path.h +++ b/esvg/render/Path.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_PATH_H__ -#define __ESVG_RENDER_PATH_H__ +#pragma once #include #include @@ -57,4 +55,3 @@ namespace esvg { } } -#endif diff --git a/esvg/render/Point.h b/esvg/render/Point.h index 5c87313..4b960fa 100644 --- a/esvg/render/Point.h +++ b/esvg/render/Point.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_POINT_H__ -#define __ESVG_RENDER_POINT_H__ +#pragma once #include #include @@ -46,5 +44,3 @@ namespace esvg { } } -#endif - diff --git a/esvg/render/PointList.h b/esvg/render/PointList.h index 125d120..71aca00 100644 --- a/esvg/render/PointList.h +++ b/esvg/render/PointList.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_POINT_LIST_H__ -#define __ESVG_RENDER_POINT_LIST_H__ +#pragma once #include #include @@ -29,6 +27,3 @@ namespace esvg { }; } } - -#endif - diff --git a/esvg/render/Scanline.h b/esvg/render/Scanline.h index 4bdb6fc..dcd357c 100644 --- a/esvg/render/Scanline.h +++ b/esvg/render/Scanline.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_SCANLINE_H__ -#define __ESVG_RENDER_SCANLINE_H__ +#pragma once #include #include @@ -31,4 +29,3 @@ namespace esvg { } } -#endif diff --git a/esvg/render/Segment.h b/esvg/render/Segment.h index e1a9c35..ab82967 100644 --- a/esvg/render/Segment.h +++ b/esvg/render/Segment.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_SEGMENT_H__ -#define __ESVG_RENDER_SEGMENT_H__ +#pragma once #include #include @@ -27,4 +25,3 @@ namespace esvg { } } -#endif diff --git a/esvg/render/SegmentList.h b/esvg/render/SegmentList.h index a470b4d..a863465 100644 --- a/esvg/render/SegmentList.h +++ b/esvg/render/SegmentList.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_SEGMENT_LIST_H__ -#define __ESVG_RENDER_SEGMENT_LIST_H__ +#pragma once #include #include @@ -52,5 +50,3 @@ namespace esvg { }; } } - -#endif diff --git a/esvg/render/Weight.h b/esvg/render/Weight.h index 18f1604..395a075 100644 --- a/esvg/render/Weight.h +++ b/esvg/render/Weight.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_RENDER_WEIGTH_H__ -#define __ESVG_RENDER_WEIGTH_H__ +#pragma once #include #include @@ -44,4 +42,3 @@ namespace esvg { } } -#endif diff --git a/esvg/spreadMethod.h b/esvg/spreadMethod.h index 3a5d963..d0d5dfd 100644 --- a/esvg/spreadMethod.h +++ b/esvg/spreadMethod.h @@ -5,9 +5,7 @@ * * @license APACHE v2.0 (see license file) */ - -#ifndef __ESVG_SPREAD_METHOD_H__ -#define __ESVG_SPREAD_METHOD_H__ +#pragma once #include @@ -23,5 +21,4 @@ namespace esvg { std::ostream& operator <<(std::ostream& _os, enum esvg::spreadMethod _obj); } -#endif diff --git a/test/main.h b/test/main.h index 184cb4b..c414359 100644 --- a/test/main.h +++ b/test/main.h @@ -8,10 +8,6 @@ #include -#ifndef __ESVG_TEST_MAIN_H__ -#define __ESVG_TEST_MAIN_H__ +#pragma once extern bool g_visualDebug; - - -#endif