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: 03294b72e5a166326a112174174bbbb493c7f988 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "reader.hpp"
#include "writer.hpp"

namespace rw_ops
{
  /// Do reverse bytes.
  /// Note! src and dest should be for different entities.
  void Reverse(Reader const & src, Writer & dest);
}