We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f66cf2b commit 40402bbCopy full SHA for 40402bb
coupling/coupled_program/graphs/graph.hpp
@@ -17,7 +17,7 @@ struct Edge {
17
18
// TODO:
19
//
20
-// install a compilation firewall around
+// 1. install a compilation firewall around
21
// the graph representation.
22
23
// In other words, client does not see
@@ -30,6 +30,9 @@ struct Edge {
30
// This removes the coupling to the STL of this class,
31
// and to the std::unique_ptr C++11 addition.
32
33
+// 2. decouple the client code from the representation
34
+// by making the Node and Edge opaque types (handles) too.
35
+//
36
// ADVANCED:
37
// You may attempt to even use this class
38
// from a C program.
0 commit comments