#ifndef SHAPEFACTORY_H_
#define SHAPEFACTORY_H_
#include <istream>
#include <map>
#include <string>
#include "shape.h"
typedef Shape *(createShapeFunction)(void);
/* thrown when a shape cannot be read from a stream */
class WrongFormatException { };
class ShapeFactory {
public:
static void registerFunction(const std::string &string, const createShapeFunction *shapeFunction);
static Shape *createShape(const std::string &string);
static Shape *createShape(std::istream &ins);
private:
std::map<std::string, createShapeFunction *> creationFunctions;
ShapeFactory();
static ShapeFactory *getShapeFactory();
};
#endif
これはヘッダーです。まだメソッドを実装していませんが、次の警告が表示されます。
Qualifier on function type 'createShapeFunction' (aka 'Shape *()') has unspecified behavior
ps: このヘッダーは先生から与えられたもので、宿題としてメソッドを実装する必要があります