lix/src/libstore/store.hh
regnat 7d5bdf8b56 Make the store plugins more introspectable
Directly register the store classes rather than a function to build an
instance of them.
This gives the possibility to introspect static members of the class or
choose different ways of instantiating them.
2020-09-16 13:53:08 +02:00

10 lines
131 B
C++

#pragma once
namespace nix {
template<typename T> class BasicStore;
class StoreConfig;
typedef BasicStore<StoreConfig> Store;
}