~ubuntu-branches/ubuntu/wily/cxxtools/wily-proposed

« back to all changes in this revision

Viewing changes to include/cxxtools/md5stream.h

  • Committer: Bazaar Package Importer
  • Author(s): Kari Pahula
  • Date: 2008-06-16 12:24:28 UTC
  • mfrom: (3.1.3 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080616122428-7bllgyt1358u779r
Tags: 1.4.8-2
Made libcxxtools-dev depend on libcxxtools6, not libcxxtools5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
  public:
87
87
    /// initializes md5-calculation
88
88
    Md5stream()
89
 
      : std::ostream(&streambuf)
90
 
    { }
 
89
      : std::ostream(0)
 
90
    {
 
91
      init(&streambuf);
 
92
    }
91
93
 
92
94
    /// ends md5-calculation and returns 16 bytes digest
93
95
    void getDigest(unsigned char digest[16])