summaryrefslogtreecommitdiff
path: root/asl/io.hpp
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-11-19 00:08:33 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-12-20 15:35:58 +0100
commitd241eaf1b209dcfb05656842dd6250067b704d99 (patch)
tree49f34f6226f4614611d16ba6332b1b50b51a4712 /asl/io.hpp
parent58200ce939a591008a8d9406f437252ce2b175cf (diff)
Add allocator, start work on box
Diffstat (limited to 'asl/io.hpp')
-rw-r--r--asl/io.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/asl/io.hpp b/asl/io.hpp
index 9c45624..e54f00c 100644
--- a/asl/io.hpp
+++ b/asl/io.hpp
@@ -7,12 +7,12 @@
namespace asl
{
-class writer
+class Writer
{
public:
- writer() = default;
- ASL_DELETE_COPY_MOVE(writer);
- virtual ~writer() = default;
+ Writer() = default;
+ ASL_DELETE_COPY_MOVE(Writer);
+ virtual ~Writer() = default;
virtual void write(span<const byte>) = 0;
};