1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
#ifndef __FORMAT_H__
#define __FORMAT_H__
#include <map>
#include "buffer.h"
class Formatter
{
public:
virtual ~Formatter() { };
virtual void format(const std::wstring &fileName, Buffer &output) = 0;
};
class FormatRegistry
{
private:
typedef std::map<std::wstring, Formatter*> FormattersMap;
FormattersMap formatters;
public:
FormatRegistry();
~FormatRegistry();
public:
Formatter* get(const std::wstring &name);
};
extern FormatRegistry formatRegistry;
#endif
|