using System; namespace XUtliPoolLib { public abstract class XBaseSingleton { public abstract bool Init(); public abstract void Uninit(); } }