diff options
Diffstat (limited to 'asl/io.hpp')
-rw-r--r-- | asl/io.hpp | 38 |
1 files changed, 19 insertions, 19 deletions
@@ -1,20 +1,20 @@ -#pragma once
-
+#pragma once + #include "asl/integers.hpp" -#include "asl/utility.hpp"
-#include "asl/span.hpp"
-
-namespace asl
-{
-
-class Writer
-{
-public:
- Writer() = default;
- ASL_DELETE_COPY_MOVE(Writer);
- virtual ~Writer() = default;
-
- virtual void write(span<const byte>) = 0;
-};
-
-} // namespace asl
+#include "asl/utility.hpp" +#include "asl/span.hpp" + +namespace asl +{ + +class Writer +{ +public: + Writer() = default; + ASL_DELETE_COPY_MOVE(Writer); + virtual ~Writer() = default; + + virtual void write(span<const byte>) = 0; +}; + +} // namespace asl |