From 279e19732c5f955de31f59f0690992c816aa8337 Mon Sep 17 00:00:00 2001 From: Tony Wasserka Date: Sat, 18 Apr 2015 02:31:00 +0200 Subject: FileUtil: Add a WriteObject method for writing a single, POD-type object. --- src/common/file_util.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src') diff --git a/src/common/file_util.h b/src/common/file_util.h index 8fe772ae..9637d1b8 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h @@ -181,6 +181,10 @@ public: template size_t WriteArray(const T* data, size_t length) { + static_assert(std::is_standard_layout::value, "Given array does not consist of standard layout objects"); + // TODO: gcc 4.8 does not support is_trivially_copyable, but we really should check for it here. + //static_assert(std::is_trivially_copyable::value, "Given array does not consist of trivially copyable objects"); + if (!IsOpen()) { m_good = false; return -1; @@ -203,6 +207,12 @@ public: return WriteArray(reinterpret_cast(data), length); } + template + size_t WriteObject(const T& object) { + static_assert(!std::is_pointer::value, "Given object is a pointer"); + return WriteArray(&object, 1); + } + bool IsOpen() { return nullptr != m_file; } // m_good is set to false when a read, write or other function fails -- cgit v1.2.3