summaryrefslogtreecommitdiff
path: root/files.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-01-19 14:31:20 -0500
committerJeffrey Walton <noloader@gmail.com>2018-01-19 14:31:20 -0500
commitbefd04312d8bdf2363921bf5ccb1393f5852a9a3 (patch)
treead07d8a6f73216719e0cb01aa6c5cd4a6cc34fb9 /files.h
parent24a9466e54f113fc4a114051e8276987e0493dc8 (diff)
downloadcryptopp-git-befd04312d8bdf2363921bf5ccb1393f5852a9a3.tar.gz
Remove unneeded Doxygen directive
Diffstat (limited to 'files.h')
-rw-r--r--files.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/files.h b/files.h
index eff2b521..ca5172d5 100644
--- a/files.h
+++ b/files.h
@@ -17,7 +17,6 @@
NAMESPACE_BEGIN(CryptoPP)
-/// \class FileStore
/// \brief Implementation of Store interface
/// \details file-based implementation of Store interface
class CRYPTOPP_DLL FileStore : public Store, private FilterPutSpaceHelper, public NotCopyable
@@ -78,7 +77,6 @@ private:
bool m_waiting;
};
-/// \class FileSource
/// \brief Implementation of Store interface
/// \details file-based implementation of Store interface
class CRYPTOPP_DLL FileSource : public SourceTemplate<FileStore>
@@ -123,7 +121,6 @@ public:
std::istream* GetStream() {return m_store.GetStream();}
};
-/// \class FileSink
/// \brief Implementation of Store interface
/// \details file-based implementation of Sink interface
class CRYPTOPP_DLL FileSink : public Sink, public NotCopyable