]> git.meshlink.io Git - meshlink/blobdiff - src/meshlink++.h
Add meshlink_get_submesh API
[meshlink] / src / meshlink++.h
index ac72f3cc96f46a0438a24d567fa25688257a8ade..8f4a9b003427f0c1e13f8c232ec38b60887fb21f 100644 (file)
@@ -327,6 +327,18 @@ public:
                return (node *)meshlink_get_node(handle, name);
        }
 
+       /// Get a handle for a specific submesh.
+       /** This function returns a handle for the submesh with the given name.
+        *
+        *  @param name         The name of the submesh for which a handle is requested.
+        *
+        *  @return             A pointer to a meshlink::submesh which represents the requested submesh,
+        *                      or NULL if the requested submesh does not exist.
+        */
+       submesh *get_submesh(const char *name) {
+               return (submesh *)meshlink_get_submesh(handle, name);
+       }
+
        /// Get a handle for our own node.
        /** This function returns a handle for the local node.
         *