摘要: #include "StdAfx.h"#include "Instance.h"static Instance* inst;Instance::Instance(void){}Instance::~Instance(void){}Instance* Instance::GetInstance(){ if(inst==NULL) inst=new Instance(); return inst;} 阅读全文
posted @ 2014-04-02 15:31 shencheng5721 阅读(96) 评论(0) 推荐(0) 编辑