summaryrefslogtreecommitdiff
path: root/include/SFML/System/InputStream.hpp
diff options
context:
space:
mode:
authorJames Cowgill <james410@cowgill.org.uk>2014-12-09 20:21:40 +0000
committerJames Cowgill <james410@cowgill.org.uk>2014-12-09 20:21:40 +0000
commitfa21c65d0c764705cfc377bf0d0de08fac26874e (patch)
treedbc9e87bbd8684d15e79fc0c8b7a8985389c3b35 /include/SFML/System/InputStream.hpp
parentdd835931261c340acd5f0409341d13fa2670423e (diff)
Imported Upstream version 2.2.0+dfsg
Diffstat (limited to 'include/SFML/System/InputStream.hpp')
-rw-r--r--include/SFML/System/InputStream.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/SFML/System/InputStream.hpp b/include/SFML/System/InputStream.hpp
index b79436a..ccf1d9f 100644
--- a/include/SFML/System/InputStream.hpp
+++ b/include/SFML/System/InputStream.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2013 Laurent Gomila (laurent.gom@gmail.com)
+// Copyright (C) 2007-2014 Laurent Gomila (laurent.gom@gmail.com)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
@@ -39,7 +39,7 @@ namespace sf
////////////////////////////////////////////////////////////
class InputStream
{
-public :
+public:
////////////////////////////////////////////////////////////
/// \brief Virtual destructor
@@ -114,7 +114,7 @@ public :
/// // custom stream class that reads from inside a zip file
/// class ZipStream : public sf::InputStream
/// {
-/// public :
+/// public:
///
/// ZipStream(std::string archive);
///
@@ -128,7 +128,7 @@ public :
///
/// Int64 getSize();
///
-/// private :
+/// private:
///
/// ...
/// };