2016-05-20 21:03:34 -05:00

39 lines
701 B
C++

#ifndef TEMPLATE_H_
#define TEMPLATE_H_
#include "../struct_strategy.h"
#include "../eqemu_config_extern.h"
class EQStreamIdentifier;
namespace TEMPLATE {
//these are the only public member of this namespace.
extern void Register(EQStreamIdentifier &into);
extern void Reload();
//you should not directly access anything below..
//I just dont feel like making a seperate header for it.
class Strategy : public StructStrategy {
public:
Strategy();
protected:
virtual std::string Describe() const;
virtual const EQClientVersion ClientVersion() const;
//magic macro to declare our opcodes
#include "ss_declare.h"
#include "TEMPLATE_ops.h"
};
};
#endif /*TEMPLATE_H_*/