Move and improve time_to_string and date_time_string functions to

GstToolkit
This commit is contained in:
brunoherbelin
2020-03-24 00:03:31 +01:00
parent cf6ef69342
commit 29507bfc09
4 changed files with 36 additions and 33 deletions

View File

@@ -3,20 +3,19 @@
#include <string>
#include <list>
using namespace std;
namespace GstToolkit
{
string to_string(guint64 t);
std::string date_time_string();
std::string time_to_string(guint64 t);
list<string> all_plugins();
list<string> all_plugin_features(string pluginname);
std::string gst_version();
std::list<std::string> all_plugins();
std::list<std::string> all_plugin_features(std::string pluginname);
bool enable_feature (string name, bool enable);
string gst_version();
bool enable_feature (std::string name, bool enable);
}