[kgraphviewer-devel] [kgraphviewer/libkgraphviz] src/kgraphviz: Add missing graphedge_p.h

Kevin Funk krf at electrostorm.net
Thu Jan 27 15:10:44 CET 2011


Git commit 370ea4a26a5c98e06030ddbb949fb1a0f6f6250f by Kevin Funk.
Pushed by kfunk into branch 'libkgraphviz'.

Add missing graphedge_p.h

A  +46   -0    src/kgraphviz/graphedge_p.h         [License: LGPL (v2+)]

http://commits.kde.org/9c7b74a4/370ea4a26a5c98e06030ddbb949fb1a0f6f6250f

diff --git a/src/kgraphviz/graphedge_p.h b/src/kgraphviz/graphedge_p.h
new file mode 100644
index 0000000..aa8703d
--- /dev/null
+++ b/src/kgraphviz/graphedge_p.h
@@ -0,0 +1,46 @@
+/*
+    Copyright (C) 2010 Kevin Funk <krf at electrostorm.net>
+
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
+
+    This library is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Library General Public License for more details.
+
+    You should have received a copy of the GNU Library General Public License
+    along with this library; see the file COPYING.LIB.  If not, write to
+    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+    Boston, MA 02110-1301, USA.
+*/
+
+#ifndef GRAPHEDGE_P_H
+#define GRAPHEDGE_P_H
+
+#include "graphedge.h"
+
+#include <QStringList>
+
+namespace KGraphViz
+{
+
+class GraphEdgePrivate
+{
+public:
+  GraphEdgePrivate();
+  GraphEdgePrivate(const GraphEdgePrivate& other);
+
+  ~GraphEdgePrivate();
+
+  GraphNode *m_fromNode, *m_toNode;
+  QStringList m_colors;
+
+  QList< DotRenderOp > m_arrowHeads;
+};
+
+}
+
+#endif
\ No newline at end of file



More information about the kgraphviewer-devel mailing list