]> ruin.nu Git - germs.git/blobdiff - src/componenttree.h
make the componenttree a minimal unoriented tree
[germs.git] / src / componenttree.h
index 7a99c91614f6baa6f1f65b0642e923965e6d24b8..212b4d8edc0a03fee77b4c9143adced17cbb8cec 100644 (file)
@@ -24,8 +24,6 @@
 #include <vector>
 #include "misc.h"
 
-class ComponentTreeTest;
-
 class ComponentTree {
        public:
                struct Node {
@@ -36,16 +34,29 @@ class ComponentTree {
                        Component _comp;
                        std::vector<Node*> _children;
                };
+
+               /**
+                * Creates a component tree from a list of components.
+                */
                ComponentTree(const std::vector<Component>& components);
 
                ~ComponentTree();
 
+               /**
+                * Transforms the tree into the minimal tree containing all unoriented componentes.
+                * \todo come up with a better name
+                */
+               void makeUnoriented();
+
        private:
                //Disable these, at least for now.
                void operator=(const ComponentTree&){};
                ComponentTree(const ComponentTree&): _root(0,Component()){};
 
+               void removeOriented(Node* n);
+
                Node _root;
+
        friend class ComponentTreeTest;
 };