]> git.lyx.org Git - features.git/blobdiff - src/graph.h
Replace LString.h with support/std_string.h,
[features.git] / src / graph.h
index e7c4ac60b9236472fc6af174a6056a69f1000e43..4a8477cbf965ceca7a09253f7bf13911507b945c 100644 (file)
@@ -1,8 +1,4 @@
 // -*- C++ -*-
-
-#ifndef GRAPH_H
-#define GRAPH_H
-
 /**
  * \file graph.h
  * This file is part of LyX, the document processor.
  *
  * \author Dekel Tsur
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
-#include "LString.h"
+#ifndef GRAPH_H
+#define GRAPH_H
+
+#include "support/std_string.h"
 
 #include <queue>
 #include <vector>
 
 class Graph {
-public: 
+public:
        Graph() : numedges_(0) {};
        ///
        typedef std::vector<int> EdgePath;