view common/TypeRegistrar.h @ 28:7d8a6167febb classical-rdf

* Begin new text entry / search widget & test utility for it * Improve typing matching methods * Update code to use ObjectLoader/Storer instead of old-style ObjectMapper
author Chris Cannam
date Mon, 01 Mar 2010 16:51:14 +0000
parents 9abc896958cf
children
line wrap: on
line source

#ifndef _TYPE_REGISTRAR_H_
#define _TYPE_REGISTRAR_H_

namespace Dataquay {
    class BasicStore;
    class TypeMapping;
}

namespace ClassicalData
{

class TypeRegistrar
{
public:
    static void registerTypes();
    static void addMappings(Dataquay::BasicStore *, Dataquay::TypeMapping *);
};

}

#endif