To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / common / TypeRegistrar.h

History | View | Annotate | Download (309 Bytes)

1

    
2
#ifndef _TYPE_REGISTRAR_H_
3
#define _TYPE_REGISTRAR_H_
4

    
5
namespace Dataquay {
6
    class BasicStore;
7
    class TypeMapping;
8
}
9

    
10
namespace ClassicalData
11
{
12

    
13
class TypeRegistrar
14
{
15
public:
16
    static void registerTypes();
17
    static void addMappings(Dataquay::BasicStore *, Dataquay::TypeMapping *);
18
};
19

    
20
}
21

    
22
#endif
23

    
24