Explorar o código

TAB instead of spaces

Zyx-2000 %!s(int64=9) %!d(string=hai) anos
pai
achega
c385c8757b
Modificáronse 1 ficheiros con 8 adicións e 8 borrados
  1. 8 8
      lib/filesystem/FileStream.h

+ 8 - 8
lib/filesystem/FileStream.h

@@ -17,18 +17,18 @@ class DLL_LINKAGE FileBuf
 {
 public:
 	typedef char char_type;
-    typedef struct category_ :
-    	boost::iostreams::seekable_device_tag,
-    	boost::iostreams::closable_tag
-    	{} category;
+	typedef struct category_ :
+		boost::iostreams::seekable_device_tag,
+		boost::iostreams::closable_tag
+		{} category;
 
 	FileBuf(const boost::filesystem::path& filename, std::ios_base::openmode mode);
 
-    std::streamsize read(char* s, std::streamsize n);
-    std::streamsize write(const char* s, std::streamsize n);
-    std::streamoff  seek(std::streamoff off, std::ios_base::seekdir way);
+	std::streamsize read(char* s, std::streamsize n);
+	std::streamsize write(const char* s, std::streamsize n);
+	std::streamoff  seek(std::streamoff off, std::ios_base::seekdir way);
 
-    void close();
+	void close();
 private:
 	void* filePtr;
 };