summaryrefslogtreecommitdiffstats
path: root/src/slv2_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r--src/slv2_internal.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h
index bc1defe..ecb7255 100644
--- a/src/slv2_internal.h
+++ b/src/slv2_internal.h
@@ -74,9 +74,6 @@ void slv2_plugin_get_port_float_values(SLV2Plugin p,
const char* qname,
float* values);
-librdf_query_results* slv2_plugin_query(SLV2Plugin plugin,
- const char* sparql_str);
-
/* ********* Plugins ********* */
@@ -229,6 +226,14 @@ SLV2ScalePoint slv2_scale_point_new(SLV2Value value, SLV2Value label);
void slv2_scale_point_free(SLV2ScalePoint point);
+/* ********* Query Results********* */
+
+struct _SLV2Results {
+ SLV2World world;
+ librdf_query_results* rdf_results;
+};
+
+
/* ********* Utilities ********* */
char* slv2_strjoin(const char* first, ...);