shapefactory.cpp

来自「financal instrument pricing using c」· C++ 代码 · 共 28 行

CPP
28
字号
// ShapeFactory.cpp
//
// Base class for shape factories
//
// 6 november 1998	RD	Started
//
// (C) Datasim Education BV 1998

#include "ShapeFactory.hpp"

ShapeFactory::ShapeFactory()
{ // Default constructor
}

ShapeFactory::ShapeFatory(const ShapeFactory& source)
{ // Copy constructor
}

ShapeFactory::~ShapeFactory()
{ // Destructor
}

ShapeFactory& ShapeFactory::operator = (const ShapeFactory& source)
{ // Assignment

	return *this;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?