forked from lix-project/lix
7d5bdf8b56
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.
10 lines
131 B
C++
10 lines
131 B
C++
#pragma once
|
|
|
|
namespace nix {
|
|
|
|
template<typename T> class BasicStore;
|
|
class StoreConfig;
|
|
typedef BasicStore<StoreConfig> Store;
|
|
|
|
}
|