Mercurial > hg > classical
diff common/TypeRegistrar.h @ 7:df999875c53b classical-rdf
* Test application for load/query (beginnings of)
author | Chris Cannam |
---|---|
date | Tue, 09 Feb 2010 17:33:39 +0000 |
parents | |
children | 9abc896958cf |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/TypeRegistrar.h Tue Feb 09 17:33:39 2010 +0000 @@ -0,0 +1,27 @@ + +#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 + +