]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/graph/example/graph_property.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / graph / example / graph_property.cpp
index ceb71c47f55c4c998e4c57021594e11bad768fa9..eec0ed2f171c06461b5b12f0ade6d4688f18cabe 100644 (file)
@@ -1,4 +1,4 @@
-//  (C) Copyright Jeremy Siek 2004 
+//  (C) Copyright Jeremy Siek 2004
 //  Distributed under the Boost Software License, Version 1.0. (See
 //  accompanying file LICENSE_1_0.txt or copy at
 //  http://www.boost.org/LICENSE_1_0.txt)
@@ -9,27 +9,26 @@
 #include <boost/graph/adjacency_list.hpp>
 #include <boost/graph/subgraph.hpp>
 
-int
-main()
+int main()
 {
-  using namespace boost;
-  using std::string;
+    using namespace boost;
+    using std::string;
 
-  typedef adjacency_list<vecS, vecS, directedS,no_property, 
-    property<edge_index_t, int>,
-    property<graph_name_t, string> > graph_t;
+    typedef adjacency_list< vecS, vecS, directedS, no_property,
+        property< edge_index_t, int >, property< graph_name_t, string > >
+        graph_t;
 
-  graph_t g;
-  get_property(g, graph_name) = "graph";
+    graph_t g;
+    get_property(g, graph_name) = "graph";
 
-  std::cout << "name: " << get_property(g, graph_name) << std::endl;
+    std::cout << "name: " << get_property(g, graph_name) << std::endl;
 
-  typedef subgraph<graph_t> subgraph_t;
+    typedef subgraph< graph_t > subgraph_t;
 
-  subgraph_t sg;
-  get_property(sg, graph_name) = "subgraph";
+    subgraph_t sg;
+    get_property(sg, graph_name) = "subgraph";
 
-  std::cout << "name: " << get_property(sg, graph_name) << std::endl;
-  
-  return exit_success;
+    std::cout << "name: " << get_property(sg, graph_name) << std::endl;
+
+    return exit_success;
 }