summaryrefslogtreecommitdiffstats
path: root/hash.h
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-03-26 11:31:04 -0400
committerDave Brolley <brolley@redhat.com>2009-03-26 11:31:04 -0400
commit4407fecb4b4e7466b256a26d1bfd63333bf367a2 (patch)
treed50e95d0928ef85e7a354926e71dace88ae82ff5 /hash.h
parent666d747e2a8880c2906c1e2ead49182cf061df74 (diff)
parenta5e8d632f443c6a882dcabc669236dc4798b1fd7 (diff)
downloadsystemtap-steved-4407fecb4b4e7466b256a26d1bfd63333bf367a2.tar.gz
systemtap-steved-4407fecb4b4e7466b256a26d1bfd63333bf367a2.tar.xz
systemtap-steved-4407fecb4b4e7466b256a26d1bfd63333bf367a2.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/hash.h b/hash.h
index 0fe95e27..bb3d5ae1 100644
--- a/hash.h
+++ b/hash.h
@@ -30,6 +30,7 @@ public:
void add(const char *s) { add((const unsigned char *)s, strlen(s)); }
void add(const std::string& s) { add((const unsigned char *)s.c_str(),
s.length()); }
+ void add_file(const std::string& filename);
void result(std::string& r);
};