Skip to content
Snippets Groups Projects
Commit 62f2f838 authored by Johannes Boog's avatar Johannes Boog
Browse files

[base] use all r2ogs6 objects to list class specific xpaths

parent a7549e2d
No related branches found
No related tags found
1 merge request!54[bugfix] make all OGS6 benchmarks work.
......@@ -8,11 +8,11 @@
#' requires string parsing.
get_xpaths_for_classes <- function(){
ns_exports <- getNamespaceExports("r2ogs6")
all_objects <- ls("package:r2ogs6")
prj_class_constructor_names <-
sort(ns_exports[grepl("^new_prj_", ns_exports)])
sort(all_objects[grepl("^new_prj_", all_objects)])
prj_class_helper_names <-
sort(ns_exports[grepl("^prj_", ns_exports)])
sort(all_objects[grepl("^prj_", all_objects)])
xfc_list <- list()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment