Welcome to mirror list, hosted at ThFree Co, Russian Federation.

reader_writer_ops.hpp « coding - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd508c01d8c908072e3ae8d393065458ccca563f (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);
}