mirror of
https://github.com/NixOS/nix.git
synced 2025-11-17 16:02:43 +01:00
13 lines
249 B
C++
13 lines
249 B
C++
#include "nix/store/store-dir-config.hh"
|
|
#include "nix/util/util.hh"
|
|
#include "nix/store/globals.hh"
|
|
|
|
namespace nix {
|
|
|
|
StoreDirConfig::StoreDirConfig(const Params & params)
|
|
: StoreDirConfigBase(params)
|
|
, MixStoreDirMethods{storeDir_}
|
|
{
|
|
}
|
|
|
|
}
|