mirror of
https://github.com/JakubVojvoda/design-patterns-cpp.git
synced 2025-12-16 20:37:05 +03:00
117 lines
1.8 KiB
C++
117 lines
1.8 KiB
C++
/*
|
|
* C++ Design Patterns: Prototype
|
|
* Author: Jakub Vojvoda [github.com/JakubVojvoda]
|
|
* 2016
|
|
*
|
|
* Source code is licensed under MIT License
|
|
* (for more details see LICENSE)
|
|
*
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
/*
|
|
* Prototype
|
|
* declares an interface for cloning itself
|
|
*/
|
|
class Prototype
|
|
{
|
|
public:
|
|
virtual ~Prototype() {}
|
|
|
|
virtual Prototype* clone() = 0;
|
|
virtual std::string type() = 0;
|
|
// ...
|
|
};
|
|
|
|
/*
|
|
* Concrete Prototype A and B
|
|
* implement an operation for cloning itself
|
|
*/
|
|
class ConcretePrototypeA : public Prototype
|
|
{
|
|
public:
|
|
~ConcretePrototypeA() {}
|
|
|
|
Prototype* clone()
|
|
{
|
|
return new ConcretePrototypeA();
|
|
}
|
|
std::string type()
|
|
{
|
|
return "type A";
|
|
}
|
|
// ...
|
|
};
|
|
|
|
class ConcretePrototypeB : public Prototype
|
|
{
|
|
public:
|
|
~ConcretePrototypeB() {}
|
|
|
|
Prototype* clone()
|
|
{
|
|
return new ConcretePrototypeB();
|
|
}
|
|
std::string type()
|
|
{
|
|
return "type B";
|
|
}
|
|
// ...
|
|
};
|
|
|
|
/*
|
|
* Client
|
|
* creates a new object by asking a prototype to clone itself
|
|
*/
|
|
class Client
|
|
{
|
|
public:
|
|
static void init()
|
|
{
|
|
types[ 0 ] = new ConcretePrototypeA();
|
|
types[ 1 ] = new ConcretePrototypeB();
|
|
}
|
|
|
|
static void remove()
|
|
{
|
|
delete types[ 0 ];
|
|
delete types[ 1 ];
|
|
}
|
|
|
|
static Prototype* make( const int index )
|
|
{
|
|
if ( index >= n_types )
|
|
{
|
|
return nullptr;
|
|
}
|
|
return types[ index ]->clone();
|
|
}
|
|
// ...
|
|
|
|
private:
|
|
static Prototype* types[ 2 ];
|
|
static int n_types;
|
|
};
|
|
|
|
Prototype* Client::types[ 2 ];
|
|
int Client::n_types = 2;
|
|
|
|
int main()
|
|
{
|
|
Client::init();
|
|
|
|
Prototype *prototype1 = Client::make( 0 );
|
|
std::cout << "Prototype: " << prototype1->type() << std::endl;
|
|
delete prototype1;
|
|
|
|
Prototype *prototype2 = Client::make( 1 );
|
|
std::cout << "Prototype: " << prototype2->type() << std::endl;
|
|
delete prototype2;
|
|
|
|
Client::remove();
|
|
|
|
return 0;
|
|
}
|