Implement the trimmer plug-in
[babeltrace.git] / plugins / trimmer / trimmer.h
index 9f4a34af915273bf98bbf335316692471873f68a..28bb1e2f1fd24076061820a7b498c1cc39e3289d 100644 (file)
 #include <babeltrace/plugin/component.h>
 #include <babeltrace/plugin/plugin-system.h>
 
+struct trimmer_bound {
+       int64_t value;
+       bool set;
+};
+
 struct trimmer {
-       int64_t range_start, range_end;
+       struct trimmer_bound begin, end;
 };
 
 #endif /* BABELTRACE_PLUGIN_TRIMMER_H */
This page took 0.024249 seconds and 4 git commands to generate.