This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/coding/reader_writer_ops.hpp
2015-09-22 16:45:47 -07:00

11 lines
228 B
C++

#pragma once
#include "coding/reader.hpp"
#include "coding/writer.hpp"
namespace rw_ops
{
/// Do reverse bytes.
/// Note! src and dest should be for different entities.
void Reverse(Reader const & src, Writer & dest);
}