about summary refs log blame commit diff
path: root/src/values.hh
blob: 79ef48671f6c552a9a37823137c8f32fde6023de (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                    
                                      
 


                                                                   
 
                                                 
                                          
 

                                 


                        
#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(const string & path);

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


#endif /* !__VALUES_H */