22 lines
615 B
C
22 lines
615 B
C
|
#include "MimicInterface.h"
|
||
|
#pragma once
|
||
|
/*
|
||
|
WARNING: It is expressly forbidden to modify any part of this document, including its name
|
||
|
*/
|
||
|
//=======================================================================================
|
||
|
/*
|
||
|
createMimic()
|
||
|
|
||
|
Creates and returns an object whose class extends MimicInterface.
|
||
|
This should be an object of a class you have created.
|
||
|
|
||
|
Example: If you made a class called "Mimic", you might say, "return new Mimic();".
|
||
|
*/
|
||
|
class Factory
|
||
|
{
|
||
|
public:
|
||
|
static MimicInterface* createMimic();
|
||
|
};
|
||
|
|
||
|
//=======================================================================================
|