mirror of
https://github.com/NixOS/nix.git
synced 2025-12-06 09:01:01 +01:00
`///@file` makes them show up in the internal API dos. A tiny few were missing `#pragma once`.
29 lines
482 B
C++
29 lines
482 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include <rapidcheck/gen/Arbitrary.h>
|
|
|
|
#include <derived-path.hh>
|
|
|
|
#include "tests/path.hh"
|
|
#include "tests/outputs-spec.hh"
|
|
|
|
namespace rc {
|
|
using namespace nix;
|
|
|
|
template<>
|
|
struct Arbitrary<DerivedPath::Opaque> {
|
|
static Gen<DerivedPath::Opaque> arbitrary();
|
|
};
|
|
|
|
template<>
|
|
struct Arbitrary<DerivedPath::Built> {
|
|
static Gen<DerivedPath::Built> arbitrary();
|
|
};
|
|
|
|
template<>
|
|
struct Arbitrary<DerivedPath> {
|
|
static Gen<DerivedPath> arbitrary();
|
|
};
|
|
|
|
}
|