代码搜索:factory
找到约 10,000 项符合「factory」的源代码
代码结果 10,000
www.eeworm.com/read/159288/10672903
cpp factory.cpp
#include "stdafx.h"
#include "factory.h"
#include "dictcomp.h"
extern ULONG g_LockNumber;
extern ULONG g_DictionaryNumber;
CDictionaryFactory::CDictionaryFactory()
{
m_Ref = 0;
}
www.eeworm.com/read/159288/10672917
h factory.h
#ifndef __DICTIONARY_FACTORY__
#define __DICTIONARY_FACTORY__
#include "Unknwn.h"
class CDictionaryFactory : public IClassFactory
{
protected:
ULONG m_Ref;
public:
www.eeworm.com/read/350132/10764455
cpp factory.cpp
#include "factory.h"
CFactory& CFactory::Instance()
{
static CFactory instance;
return instance;
}
void CFactory::LoadFixedPrototype(ASLFile *pFile)
{
ASLIni ini;
ASLFileLoader loader
www.eeworm.com/read/350132/10764533
h factory.h
#pragma once
#include "incs.h"
#include "item.h"
#define FACTORY CFactory::Instance()
class CFactory
{
private:
CFactory(void) : m_nGiftNum(0) {}
~CFactory(void) { ReleaseMapPrototype(
www.eeworm.com/read/275958/10781707
ico factory.ico
www.eeworm.com/read/275622/10807243
cpp factory.cpp
/********************************************************************
created: 2006/06/30
filename: Factory.cpp
author: 李创
http://www.cppblog.com/converse/
purpose: Factor
www.eeworm.com/read/275622/10807247
h factory.h
/********************************************************************
created: 2006/06/30
filename: Factory.h
author: 李创
http://www.cppblog.com/converse/
purpose: Factory模
www.eeworm.com/read/349343/10834328
cpp factory.cpp
//Factory.cpp
#include "Factory.h"
#include "Product.h"
#include
using namespace std;
Factory::Factory()
{
}
Factory::~Factory()
{
}
ConcreteFactory::ConcreteFactory()
www.eeworm.com/read/349343/10834334