From 7430464ae5aefe37afa327d4efbdc5eb7dd3f15d Mon Sep 17 00:00:00 2001 From: Patrick Venture Date: Thu, 17 Jan 2019 09:31:04 -0800 Subject: rename write,read to writeMeta,readMeta The blobs::DataInterface specifies two methods, write and read which are meant to be implemented to write or read configuration for the data interface implementation. Change-Id: I831a8611596fca50570a4156cbdcfa5c810c0315 Signed-off-by: Patrick Venture --- data_handler.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'data_handler.hpp') diff --git a/data_handler.hpp b/data_handler.hpp index 1bee432..75f7660 100644 --- a/data_handler.hpp +++ b/data_handler.hpp @@ -43,7 +43,7 @@ class DataInterface * @param[in] configuration - byte vector of data. * @return bool - returns true on success. */ - virtual bool write(const std::vector& configuration) = 0; + virtual bool writeMeta(const std::vector& configuration) = 0; /** * read configuration. @@ -51,7 +51,7 @@ class DataInterface * @return bytes - whatever bytes are required configuration information for * the mechanism. */ - virtual std::vector read() = 0; + virtual std::vector readMeta() = 0; }; struct DataHandlerPack -- cgit v1.2.1