mirror of
https://github.com/NixOS/nix
synced 2025-07-03 02:01:48 +02: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
|