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

diff_patch_common.hpp « coding - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 061a576d0cebae10b22582b87474ad4564769688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

namespace diff
{

enum Operation
{
  COPY = 0,
  DELETE = 1,
  INSERT = 2,
};

}