代码搜索:singleton
找到约 4,696 项符合「singleton」的源代码
代码结果 4,696
www.eeworm.com/read/162314/10315344
ncb singleton.ncb
www.eeworm.com/read/162314/10315346
opt singleton.opt
www.eeworm.com/read/162314/10315353
dsp singleton.dsp
# Microsoft Developer Studio Project File - Name="Singleton" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/162314/10315355
h singleton.h
#ifndef _SINGLETON_H_
#define _SINGLETON_H_
#include
using namespace std;
class Singleton
{
public:
static Singleton* Instance();
protected:
Singleton();
private:
st
www.eeworm.com/read/162314/10315358
plg singleton.plg
Build Log
--------------------Configuration: Singleton - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADM
www.eeworm.com/read/279967/10373627
cpp singleton.cpp
/******************************************************************************
Module: Singleton.cpp
Notices: Copyright (c) 2008 Jeffrey Richter & Christophe Nasarre
*****************************
www.eeworm.com/read/279967/10373638
rc singleton.rc
// Microsoft Visual C++ generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
/
www.eeworm.com/read/279967/10373647
ico singleton.ico
www.eeworm.com/read/160819/10496063
h singleton.h
#ifndef _SINGLETON_H
#define _SINGLETON_H
// demo code fora singleton implementation
class Singleton
{
public:
static Singleton * GetInstance();
// methods here for Singleton beha
www.eeworm.com/read/352063/10584364
cpp singleton.cpp
//Singleton.cpp
#include "Singleton.h"
#include
using namespace std;
Singleton* Singleton::_instance = 0;
Singleton::Singleton()
{
cout