1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 23:11:16 +02:00
nix/src/libexpr/c/nix_api_expr_internal.h
Yorick van Pelt 5d82d6e733
nix_api: fix missing includes in headers
Forward declaration doesn't work here, since we define classes that
contain the objects
2024-03-28 10:47:55 +01:00

15 lines
246 B
C

#ifndef NIX_API_EXPR_INTERNAL_H
#define NIX_API_EXPR_INTERNAL_H
#include "eval.hh"
#include "attr-set.hh"
struct State {
nix::EvalState state;
};
struct BindingsBuilder {
nix::BindingsBuilder builder;
};
#endif // NIX_API_EXPR_INTERNAL_H