1 2 3 4 5 6 7 8 9
#include <string> struct snd { static snd& instance () { static snd self; return self; } std::string data; };