0

I want to write a wrapper over some open source diff tool. Say kdiff3. Suggesting the way to do the same.

The diff tool shows as per file what is the diff in the code. I want it to perform specific task as per my requirement and automatically resolve the conflicts by deleting the code that has caused the conflict.

Kara
  • 6,115
  • 16
  • 50
  • 57
PKSA
  • 113
  • 1
  • 7
  • 1
    OK, what is your question? What did you try? What language do you plan to use? – NaN Sep 07 '15 at 08:18
  • I am using json for which I have to merge code. The problem is for eg. I have a button and I have changed its id from btn1 to btn2. What diff tool will show is just the change in id but I want to create a wrapper where I can add more details so that it will be easier for end user to understand – PKSA Sep 07 '15 at 08:28

1 Answers1

0

It seems that kdiff 3 doesn't have api, though you can call it from command line http://kdiff3.sourceforge.net/doc/documentation.html with different options. This doc can help you achieve your goal.

Dmitrii Z.
  • 2,287
  • 3
  • 19
  • 29