#pragma once #include "singleton.hh" template T& Singleton::instance() { static T instance_; return instance_; }