summaryrefslogtreecommitdiff
path: root/src/BStream.cc
AgeCommit message (Collapse)Author
2013-12-21WebSockets can now send frames.Nicolas "Pixel" Noble
2013-12-20Switching off_t to off64_t.Nicolas "Pixel" Noble
2013-01-21Small, puny optimization.Nicolas 'Pixel' Noble
2013-01-17Shutting off a few warnings.Nicolas 'Pixel' Noble
2012-08-29Using true C++11 initializers in classes.Nicolas "Pixel" Noble
2011-12-11Introducing EAssert for 'Execution Assert', which won't stop the ↵Pixel
application, and will replace a bunch of RAssert around the code.
2011-12-04Reworked some things in the architecture, mainly exceptions and asserts.Pixel
-) Removed Assert() -) Added AAssert(), IAssert(), RAssert(), TAssert() and Failure() -) Reworked all asserts in the code, and added meaningful messages to them. -) Changed the way the startup code is generated; BALAU_STARTUP is no longer necessary.
2011-11-25We need the buffered streams to be detacheablePixel
2011-11-23Adding the isA<>() template / method to the IO proxy, and optimizing the ↵Pixel
BStream using it, in case one never wants to use the readString() or peekByte() methods.
2011-11-13Adding buffered streams; mainly for string parsing.Pixel