diff options
Diffstat (limited to 'src/cryptohash.h')
-rw-r--r-- | src/cryptohash.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cryptohash.h b/src/cryptohash.h index 87aaf09..91c9511 100644 --- a/src/cryptohash.h +++ b/src/cryptohash.h | |||
@@ -12,6 +12,8 @@ | |||
12 | 12 | ||
13 | namespace Bu | 13 | namespace Bu |
14 | { | 14 | { |
15 | class Stream; | ||
16 | |||
15 | class CryptoHash | 17 | class CryptoHash |
16 | { | 18 | { |
17 | public: | 19 | public: |
@@ -23,6 +25,7 @@ namespace Bu | |||
23 | virtual void addData( const void *sData, int iSize ) = 0; | 25 | virtual void addData( const void *sData, int iSize ) = 0; |
24 | virtual void addData( const Bu::FString &sData ); | 26 | virtual void addData( const Bu::FString &sData ); |
25 | virtual FString getResult() = 0; | 27 | virtual FString getResult() = 0; |
28 | virtual void writeResult( Stream &sOut ) = 0; | ||
26 | }; | 29 | }; |
27 | }; | 30 | }; |
28 | 31 | ||