]> granicus.if.org Git - graphviz/commitdiff
replace Smyrna header guards with more modern #pragma once
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 2 May 2021 20:08:37 +0000 (13:08 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 8 May 2021 20:55:37 +0000 (13:55 -0700)
29 files changed:
cmd/smyrna/arcball.h
cmd/smyrna/draw.h
cmd/smyrna/glexpose.h
cmd/smyrna/glmotion.h
cmd/smyrna/gltemplate.h
cmd/smyrna/glutrender.h
cmd/smyrna/gui/appmouse.h
cmd/smyrna/gui/callbacks.h
cmd/smyrna/gui/datalistcallbacks.h
cmd/smyrna/gui/frmobjectui.h
cmd/smyrna/gui/glcompui.h
cmd/smyrna/gui/gui.h
cmd/smyrna/gui/menucallbacks.h
cmd/smyrna/gui/toolboxcallbacks.h
cmd/smyrna/gui/topviewsettings.h
cmd/smyrna/gvprpipe.h
cmd/smyrna/hier.h
cmd/smyrna/hotkeymap.h
cmd/smyrna/materials.h
cmd/smyrna/polytess.h
cmd/smyrna/selectionfuncs.h
cmd/smyrna/smyrna_utils.h
cmd/smyrna/smyrnadefs.h
cmd/smyrna/topfisheyeview.h
cmd/smyrna/topviewdefs.h
cmd/smyrna/topviewfuncs.h
cmd/smyrna/tvnodes.h
cmd/smyrna/viewport.h
cmd/smyrna/viewportcamera.h

index b8b6c6baef34a2775fc5c6e23be3c1d326588686..b8e159ed30d8ccb314875ff954eec542ed5f8485 100644 (file)
@@ -41,8 +41,7 @@
 /**                                                                                 **/
 /*************************************************************************************/
 
-#ifndef _ArcBall_h
-#define _ArcBall_h
+#pragma once
 
 // 8<--Snip here if you have your own math types/funcs-->8 
 
@@ -559,5 +558,3 @@ struct _ArcBall_t {
 void init_arcBall(ArcBall_t * a, GLfloat NewWidth, GLfloat NewHeight);
 void arcmouseClick(void);
 void arcmouseDrag(void);
-
-#endif
index 113164af3380d890f83ee781af5d738ced653e04..860ee018198d73c6ef3295ae5681e3c03cd9b64a 100644 (file)
@@ -8,8 +8,8 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef DRAW_H
-#define DRAW_H
+#pragma once
+
 #include "smyrnadefs.h"
 #include <gtk/gtkgl.h>
 #include <xdot/xdot.h>
@@ -34,4 +34,3 @@ extern void draw_selpoly(glCompPoly* selPoly);
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index f0a89bab0473af60c89194e5665750b673c74395..7bb39e176769d93448b9965e7138f3bc4ca27ba9 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef GLEXPOSE_H
-#define GLEXPOSE_H
+#pragma once
 
 #include "viewport.h"
 
@@ -28,4 +27,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 8d92de2c28ddba58ced4b42161ada0a78428dfe1..e8986a3dcd8d7844bad446ff3f3976ddcdab63db 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef GLMOTION_H
-#define GLMOTION_H
+#pragma once
 
 #include "viewport.h"
 
@@ -24,4 +23,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 19575ec665761869fd39dd83e43e60eb8d273db3..52faa6028e94a04902367c1fade9b5662f6114b5 100644 (file)
@@ -8,13 +8,13 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
+#pragma once
+
 /*
        this code is used to set up a opngl window and set
        some basic features (panning zooming and rotating)
        Viewport.h provides a higher level control such as drawing primitives
 */
-#ifndef GL_TEMPLATE_H
-#define GL_TEMPLATE_H
 
 #ifdef _WIN32
 #include <windows.h>
@@ -38,4 +38,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 7e74e742fa94a15ce34bed1b4c7eeb19f5ff3760..487f7afa21ea7ee14e2223af03edcbd9deece7aa 100644 (file)
@@ -1,6 +1,4 @@
-#ifndef GLUTRENDER_H
-#define        GLUTRENDER_H
-
+#pragma once
 
 #ifdef __cplusplus
 extern "C" {
@@ -11,4 +9,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 0e3838f76a5d10e5698b8d762a9ec8ec099202eb..ccaf4047a8014dc84861dca4bb2aec3c0bfca116 100644 (file)
@@ -8,8 +8,8 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef APPMOUSE_H
-#define APPMOUSE_H
+#pragma once
+
 #include "smyrnadefs.h"
 
 extern void appmouse_left_click_down(ViewInfo* v,int x,int y);
@@ -26,7 +26,3 @@ extern void appmouse_middle_drag(ViewInfo* v,int x,int y);
 extern void appmouse_move(ViewInfo* v,int x,int y);
 extern void appmouse_key_release(ViewInfo* v);
 extern void appmouse_key_press(ViewInfo* v,int key);
-
-
-
-#endif
index a5a022b6addf72ee31f330c39c54add55dc450e9..3dd9c2a238b779c6641d3245c82fe5a9aa294986 100644 (file)
@@ -7,8 +7,8 @@
  *
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
-#ifndef CALLBACKS_H
-#define CALLBACKS_H 1
+
+#pragma once
 
 #include <gtk/gtk.h>
 #include "toolboxcallbacks.h"
@@ -80,4 +80,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 4efa95f3dff1134a9c5c31709e3fbeeb507dc8dd..d4b28b526771a63355cac62e8f570bfcac3f7fbc 100644 (file)
@@ -8,9 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef DATALISTCALLBACKS_H
-#define DATALISTCALLBACKS_H
-
+#pragma once
 
 #include "gui.h"
 #include "tvnodes.h"
@@ -67,4 +65,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index e5cdf3a71d4d0903148ff6a1c5f290b19bf15ea1..238f1a612abfa944827e82a2e32965d9d4f5586c 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef FRMOBJECTUI_H
-#define FRMOBJECTUI_H
+#pragma once
 
 #include "smyrnadefs.h"
 
@@ -37,5 +36,3 @@ _BB void on_attrSearchBtn_clicked (GtkWidget * widget, gpointer user_data);
 
 extern attr_list* load_attr_list(Agraph_t* g);
 extern void showAttrsWidget(topview* t);
-
-#endif
index 176c37d641c137134f46d9ee6668450b2f1b7ba8..72224f11377f82f340f5d9922ec23baa78e9fa5f 100644 (file)
@@ -8,8 +8,8 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef GLCOMPUI_H
-#define GLCOMPUI_H
+#pragma once
+
 #include "smyrnadefs.h"
 
 #ifdef __cplusplus
@@ -26,4 +26,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 4251a2616742909f2964469f3867014db52c95f3..4c13faf8ac6d6a47bc7db9ef6ea18e4846175259 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef GUI_H
-#define GUI_H
+#pragma once
 
 #include "smyrnadefs.h"
 #include <gtk/gtk.h>
@@ -82,4 +81,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 26c42cca05e8f2ad03b4cd1a450810a87126109b..94880d654262fa80a1c7f5b1bd22697582186ea6 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef MENUCALLBACKS_H
-#define MENUCALLBACKS_H
+#pragma once
 
 #include "gui.h"
 
@@ -92,4 +91,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 8b8e0aedb48d217d379fe18a64eb4919e7a8bcb7..0ab13d7e776b5777242bb7131ffd4f9582ccf8ce 100644 (file)
@@ -8,8 +8,8 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef TOOLBOXCALLBACKS_H
-#define TOOLBOXCALLBACKS_H
+#pragma once
+
 #include <gtk/gtk.h>
 #include "gui.h"
 #if defined(_WIN32)
@@ -65,4 +65,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 60299e8afa429eeeb85f258a933c01f24db1e1d2..5dfb7a091abaffaf351d86e768d2565c245c7f54 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef TOPVIEWSETTINGS_H
-#define TOPVIEWSETTINGS_H
+#pragma once
 
 #include "smyrnadefs.h"
 
@@ -33,4 +32,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 5f6ef09347aa683b69fb47c1e68f0a2b31d5b7f8..4823a75f6982164623fd7b530a3bdfc84e4c048b 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef GVPRPIPE_H
-#define GVPRPIPE_H
+#pragma once
 
 #include <cgraph/cgraph.h>
 
@@ -22,4 +21,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 9a22e29fea404c027635f27125210cca51dc9746..86f73bf89f9039d111ca4c2f2dd128deb0bbe681 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef HIER_H
-#define HIER_H
+#pragma once
 
 #include <topfish/hierarchy.h>
 
@@ -58,4 +57,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 8d336da830babd9e5d73d01b5c182157da5db7e8..a45670eabb784f108cc83adc8249e6271c6e4be4 100644 (file)
@@ -8,8 +8,8 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef HOTKEYMAP_H
-#define HOTKEYMAP_H
+#pragma once
+
 #include "smyrnadefs.h"
 
 #define B_LSHIFT           65505
@@ -38,8 +38,3 @@ extern void load_mouse_actions (ViewInfo* v);
 
 extern int get_mode(ViewInfo* v);
 extern int get_key_action(ViewInfo* v,int key);
-
-
-
-
-#endif
index 931ec61c75dc36917838a603ad3f7a01ff158013..1e1beaba1dfbe8253ff3c315b2eac527a0a17062 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef MATERIALS_H
-#define MATERIALS_H
+#pragma once
 
 #ifdef __cplusplus
 extern "C" {
@@ -109,5 +108,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-
-#endif
index a6489ac39ba807ea47add60c8f816fd751d3e029..bf3d66d0ac2951a6006f17ac26609fc0fa6fce33 100644 (file)
@@ -8,8 +8,8 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef POLYTESS_H
-#define POLYTESS_H
+#pragma once
+
 #include "smyrnadefs.h"
 
 #ifdef __cplusplus
@@ -24,4 +24,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 9358080e9ed0cb92674d4771eb2e0a4397121a90..e6799baf25ea4e3163c13469ca50f49e48828db0 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef SELECTIONFUNCS_H
-#define SELECTIONFUNCS_H
+#pragma once
 
 #include "draw.h"
 #include <GL/gl.h>
@@ -25,4 +24,3 @@ extern void clear_selpoly(glCompPoly* sp);
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 47d08052f48613c80570767b1b14c8c70be6ab46..f33eba6119529eec96e895e1b38362146726773a 100644 (file)
@@ -7,8 +7,8 @@
  *
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
-#ifndef SMYRNA_UTILS_H
-#define SMYRNA_UTILS_H
+
+#pragma once
 
 #include "smyrnadefs.h"
 #include <cgraph/cgraph.h>
@@ -31,5 +31,3 @@ extern int point_within_ellips_with_coords(float ex, float ey,
 extern int point_within_sphere_with_coords(float x0, float y0, float z0,
                                        float r, float x, float y,
                                        float z);
-
-#endif
index 12a1218f5204a5540913193bffd7b5e7f7aebf6b..71119c381bf157b4b53efcdea6615f013e88424a 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef SMYRNADEFS_H
-#define SMYRNADEFS_H
+#pragma once
 
 #ifdef _WIN32
 #ifndef NO_WIN_HEADER
@@ -735,4 +734,3 @@ typedef struct
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 0a542523afae658ed1203ae8de6ac8d1dc130bed..d0625642fcb6a891dd054339a7c5ee31bd78684a 100644 (file)
@@ -7,8 +7,8 @@
  *
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
-#ifndef TOPFISHEYEVIEW_H
-#define TOPFISHEYEVIEW_H
+
+#pragma once
 
 #include "smyrnadefs.h"
 #include "hier.h"
@@ -38,4 +38,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index d46937e30bb2c37940c2d42bade8185a13aabb30..94b9847974a2f8a4b4861eb83091fee234e5780d 100644 (file)
@@ -8,14 +8,9 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef TOPVIEWDEFS_H
-#define TOPVIEWDEFS_H
+#pragma once
+
 #include "smyrnadefs.h"
 #include "gui.h"
 #include "tvnodes.h"
 #include <glcomp/glcompset.h>
-
-
-
-
-#endif
index c986369267c13d63955d3e2eb066baddbd288136..0af4a0273da919da345fe1c36b3b153e1a5c9bf5 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef TOPVIEWFUNCS_H
-#define TOPVIEWFUNCS_H
+#pragma once
 
 #include "smyrnadefs.h"
 
@@ -29,4 +28,3 @@ extern void updateSmGraph(Agraph_t * g,topview* t);
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index 3de19f67e4deeed10dc53bff2ac965305af0aaf1..6ef75b0455a207f26145c130eee0709bff40e95c 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef TVNODES_H
-#define TVNODES_H
+#pragma once
 
 #include "gui.h"
 #define MAX_NODE_PER_PAGE 100
@@ -131,4 +130,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index cc7baa2f7ae39d518d822e1787c4e78fe286811e..4d50fdf357ebc6ce24e635aad4584012e90a953a 100644 (file)
@@ -8,9 +8,9 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
+#pragma once
+
 //view data structure
-#ifndef VIEWPORT_H
-#define VIEWPORT_H
 #include "smyrnadefs.h"
 #include <gtk/gtk.h>
 #include <xdot/xdot.h>
@@ -55,4 +55,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif
index dea421471fac72f809443099370def39e91e63ea..4eb37e738fd445a2dbc2b06392ced1d127641c57 100644 (file)
@@ -8,8 +8,7 @@
  * Contributors: Details at https://graphviz.org
  *************************************************************************/
 
-#ifndef VIEWPORTCAMERA_H
-#define VIEWPORTCAMERA_H
+#pragma once
 
 #include "smyrnadefs.h"
 #include <glcomp/glcompset.h>
@@ -37,4 +36,3 @@ extern "C" {
 #ifdef __cplusplus
 }                              /* end extern "C" */
 #endif
-#endif