mirror of
https://github.com/NixOS/nix.git
synced 2025-12-14 21:11:04 +01:00
15 lines
195 B
C
15 lines
195 B
C
#ifndef NIX_API_STORE_INTERNAL_H
|
|
#define NIX_API_STORE_INTERNAL_H
|
|
#include "store-api.hh"
|
|
|
|
struct Store
|
|
{
|
|
nix::ref<nix::Store> ptr;
|
|
};
|
|
|
|
struct StorePath
|
|
{
|
|
nix::StorePath path;
|
|
};
|
|
|
|
#endif
|