Add queue.R to Collate
[filehash.git] / NAMESPACE
blob532682353c8c49ef3ee8291f3ea7e8bc53c5b867
1 importFrom(utils, normalizePath)
3 useDynLib(filehash)
5 ## Classes
6 exportClasses(
7               "filehash",
8               "filehashRDS",
9               "filehashDB1"
10               )
13 ## Primary interface
14 exportMethods(
15               "dbInsert",
16               "dbFetch",
17               "dbExists",
18               "dbList",
19               "dbDelete",
20               "dbReorganize",
21               "dbUnlink",
22               "dbMultiFetch",
23               "dbCreate",
24               "dbInit",
25               "dbLoad",
26               "dbLazyLoad"
27               )
29 exportMethods("[[", "[", "[[<-", "$<-", "$")
31 export(
32        "filehashOption",
33        "registerFormatDB",
34        "filehashFormats"
35        )
38 ## Miscellaneous functions
39 exportMethods(
40               "show",
41               "with",
42               "coerce",
43               "lapply"
44               )
46 export(
47        "dumpDF",
48        "dumpObjects",
49        "db2env",
50        "dumpImage",
51        "dumpList"
52        )
54 ## Stack stuff
55 export("isEmptyS", "topS", "createS", "initS", "pushS", "mpushS", "popS")