@@ -54,50 +54,36 @@ struct fendpoint {
54
54
55
55
const std::vector<fendpoint> funcs = {
56
56
// File
57
- { " File::listBlocks" , nixfile::list_blocks },
58
- { " File::listSections" , nixfile::list_sections },
59
57
{ " File::createBlock" , nixfile::create_block },
60
58
{ " File::createSection" , nixfile::create_section },
61
59
62
60
// Block
63
61
{ " Block::describe" , nixblock::describe },
64
- { " Block::listDataArrays" , nixblock::list_data_arrays },
65
- { " Block::listSources" , nixblock::list_sources },
66
- { " Block::listTags" , nixblock::list_tags },
67
- { " Block::listMultiTags" , nixblock::list_multi_tags },
68
62
69
63
// Data Array
70
64
{ " DataArray::describe" , nixdataarray::describe },
71
65
{ " DataArray::readAll" , nixdataarray::read_all },
72
66
73
67
// Tag
74
68
{ " Tag::describe" , nixtag::describe },
75
- { " Tag::listReferences" , nixtag::list_references_array },
76
- { " Tag::listFeatures" , nixtag::list_features },
77
- { " Tag::listSources" , nixtag::list_sources },
78
69
{ " Tag::retrieveData" , nixtag::retrieve_data },
79
70
{ " Tag::featureRetrieveData" , nixtag::retrieve_feature_data },
80
71
81
72
// Multi Tag
82
73
{ " MultiTag::describe" , nixmultitag::describe },
83
- { " MultiTag::listReferences" , nixmultitag::list_references_array },
84
- { " MultiTag::listFeatures" , nixmultitag::list_features },
85
- { " MultiTag::listSources" , nixmultitag::list_sources },
86
74
{ " MultiTag::retrieveData" , nixmultitag::retrieve_data },
87
75
{ " MultiTag::featureRetrieveData" , nixmultitag::retrieve_feature_data },
88
76
89
77
// Source
90
78
{ " Source::describe" , nixsource::describe },
91
- { " Source::listSources" , nixsource::list_sources },
92
79
93
80
// Feature
94
81
{ " Feature::describe" , nixfeature::describe },
95
82
{ " Feature::linkType" , nixfeature::link_type },
96
83
97
84
// Section
98
85
{ " Section::describe" , nixsection::describe },
99
- { " Section::listSections" , nixsection::list_sections },
100
- { " Section::listProperties" , nixsection::list_properties }
86
+ { " Section::properties" , nixsection::properties }
101
87
};
102
88
103
89
// glue "globals"
0 commit comments