view common/TypeRegistrar.h @ 51:c83cc68483ea

Close file (to flush buffer) before reopening
author Chris Cannam
date Wed, 08 Jun 2011 15:17:53 +0100
parents 7d8a6167febb
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