about summary refs log tree commit diff
path: root/src/values.hh
blob: 1bb00a9dd0d43d202c97b6fb43c1b7616f51ba34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __VALUES_H
#define __VALUES_H

#include <string>

#include "hash.hh"

using namespace std;


void copyFile(string src, string dst);

/* Copy a file to the nixStore directory and register it in dbRefs.
   Return the hash code of the value. */
void addToStore(string srcPath, string & dstPath, Hash & hash);

/* Delete a value from the nixStore directory. */
void deleteFromStore(Hash hash);

/* !!! */
string queryFromStore(Hash hash);


#endif /* !__VALUES_H */