1DTL
2===
3
4What is dtl?
5------------
6
7dtl is a diff template library written in C++.
8
9Copyright(C) 2012 Tatsuhiko Kubo <<cubicdaiya@gmail.com>>
10
11dtl can compare two sequences with arbitrary type, however the sequences must support the random access iterator.
12Please read the document at the following URL for details:
13
14<http://code.google.com/p/dtl-cpp/>
15
16
17License
18-------
19
20Please read the file COPYING or the document at the following URL concerning the license for dtl:
21
22<http://code.google.com/p/dtl-cpp/source/browse/COPYING>
23
24
25How to use dtl
26--------------
27
28To start using this library, all you need to do is include dtl.hpp.
29
30    #include "dtl/dtl.hpp"
31
32If you are interested in the details, please visit the following URL:
33
34<http://code.google.com/p/dtl-cpp/wiki/Tutorial>
35