Mercurial > hg > classical
view common/TypeRegistrar.h @ 21:ea477e4cc75c classical-rdf
* update for newer dataquay
author | Chris Cannam |
---|---|
date | Thu, 25 Feb 2010 18:21:53 +0000 |
parents | df999875c53b |
children | 9abc896958cf |
line wrap: on
line source
#ifndef _TYPE_REGISTRAR_H_ #define _TYPE_REGISTRAR_H_ namespace Dataquay { class BasicStore; class ObjectMapper; } namespace ClassicalData { class TypeRegistrar { public: static void addMappings(Dataquay::BasicStore *, Dataquay::ObjectMapper *); private: TypeRegistrar(); static TypeRegistrar m_instance; }; } #endif