Franco Head
#ifndef FRANCO
#define FRANCO
//
// Franco is a reporter. He likes to conduct interviews outside
// the dungeon. He reports to Kervin and to the user. He only cares
// about monsters. He would like to care about more though.
//
#include
#include
typedef std::string topic;
typedef std::string description;
typedef std::vector notepad;
// Franco talks to Kervin
#include "Kervin.h"
class Franco {
private:
notepad n;
topic t;
public:
Franco();
//get the word from the cave
bool askKervinabout( topic );
//describe a monster from input
bool record( topic, description );
};
#endif
#define FRANCO
//
// Franco is a reporter. He likes to conduct interviews outside
// the dungeon. He reports to Kervin and to the user. He only cares
// about monsters. He would like to care about more though.
//
#include
#include
typedef std::string topic;
typedef std::string description;
typedef std::vector
// Franco talks to Kervin
#include "Kervin.h"
class Franco {
private:
notepad n;
topic t;
public:
Franco();
//get the word from the cave
bool askKervinabout( topic );
//describe a monster from input
bool record( topic, description );
};
#endif

0 Comments:
Post a Comment
<< Home