Mercurial > hg > classical
view common/TypeRegistrar.h @ 11:98047b91b09d classical-rdf
* Add "proper" composer name matching from user input. Needs to be faster
though
author | Chris Cannam |
---|---|
date | Thu, 18 Feb 2010 18:16:43 +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