1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#include <kurator/universe.h> #include <memory> #include <kurator/universe/Repository.h> #include "SampleRepository.h" namespace kurator { namespace universe { std::shared_ptr<Repository> load_sample() { return std::make_shared<SampleRepository>(); } } // namespace universe } // namespace kurator