summaryrefslogtreecommitdiff
path: root/files.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-11-19 04:40:07 -0500
committerJeffrey Walton <noloader@gmail.com>2016-11-19 04:40:07 -0500
commit3fc97d2bfff25d571049466a6803e8edcad2ceb4 (patch)
treef596f47add6c025328f28ea4847312524c634628 /files.h
parentcb7dbd32ec2aea5a6ccbcb5d37580d60dceeeee1 (diff)
downloadcryptopp-git-3fc97d2bfff25d571049466a6803e8edcad2ceb4.tar.gz
Updated documentation
Diffstat (limited to 'files.h')
-rw-r--r--files.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/files.h b/files.h
index 0c650f54..3375fb25 100644
--- a/files.h
+++ b/files.h
@@ -84,18 +84,18 @@ public:
typedef FileStore::OpenErr OpenErr;
typedef FileStore::ReadErr ReadErr;
- //! \brief Construct a FileStore
+ //! \brief Construct a FileSource
FileSource(BufferedTransformation *attachment = NULL)
: SourceTemplate<FileStore>(attachment) {}
- //! \brief Construct a FileStore
+ //! \brief Construct a FileSource
//! \param in an existing stream
//! \param pumpAll flag indicating if source data should be pumped to its attached transformation
//! \param attachment an optional attached transformation
FileSource(std::istream &in, bool pumpAll, BufferedTransformation *attachment = NULL)
: SourceTemplate<FileStore>(attachment) {SourceInitialize(pumpAll, MakeParameters(Name::InputStreamPointer(), &in));}
- //! \brief Construct a FileStore
+ //! \brief Construct a FileSource
//! \param filename the narrow name of the file to open
//! \param pumpAll flag indicating if source data should be pumped to its attached transformation
//! \param attachment an optional attached transformation