Add to_directory method to relevant object classes
[oam.git] / code / network-generator / network_generation / model / python / o_ran_near_rt_ric.py
index 5a44843..17208f8 100644 (file)
@@ -145,3 +145,7 @@ class ORanNearRtRic(ORanNode):
 
     def toSvg(self) -> ET.Element:
         return ET.Element("to-be-implemented")
+
+    def to_directory(self, parent_dir: str) -> None:
+        for o_ran_cu in self.o_ran_cus:
+            o_ran_cu.to_directory(parent_dir)