mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-07 08:20:01 +01:00
15 lines
189 B
C++
15 lines
189 B
C++
#ifndef __GSTGUI_TOOLKIT_H_
|
|
#define __GSTGUI_TOOLKIT_H_
|
|
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
|
|
namespace GstToolkit
|
|
{
|
|
|
|
string to_string(guint64 t);
|
|
|
|
};
|
|
|
|
#endif // __GSTGUI_TOOLKIT_H_
|