view common/TypeRegistrar.h @ 19:559a001e1bf5 classical-rdf

* greatly improve matchTyping function for Composer
author Chris Cannam
date Mon, 22 Feb 2010 18:09:55 +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