Files
vimix/GstToolkit.h
brunoherbelin dbc51f2ed4 compilation OSX
2020-04-06 13:26:38 +02:00

24 lines
458 B
C++

#ifndef __GSTGUI_TOOLKIT_H_
#define __GSTGUI_TOOLKIT_H_
#include <glibconfig.h>
#include <string>
#include <list>
namespace GstToolkit
{
std::string date_time_string();
std::string time_to_string(guint64 t);
std::string gst_version();
std::list<std::string> all_plugins();
std::list<std::string> all_plugin_features(std::string pluginname);
bool enable_feature (std::string name, bool enable);
}
#endif // __GSTGUI_TOOLKIT_H_