]> git.lyx.org Git - lyx.git/blobdiff - src/graph.h
Fix encoding of converters path and arguments
[lyx.git] / src / graph.h
index 49f1a4dbb3c54cc1719e1534248c4bed7caa815b..718da2b694d05e7426cf81d084427e7ecf72f6b6 100644 (file)
@@ -16,6 +16,9 @@
 #include <vector>
 
 
+namespace lyx {
+
+
 class Graph {
 public:
        Graph() : numedges_(0) {};
@@ -42,7 +45,8 @@ private:
        int bfs_init(int, bool clear_visited = true);
 
        ///
-       struct Vertex {
+       class Vertex {
+       public:
                std::vector<int> in_vertices;
                std::vector<int> out_vertices;
                std::vector<int> out_edges;
@@ -60,4 +64,7 @@ private:
 };
 
 
+
+} // namespace lyx
+
 #endif //GRAPH_H