Guitar
Lcs.hpp
Go to the documentation of this file.
1 
36 /* If you use this library, you must include dtl.hpp only. */
37 
38 #ifndef DTL_LCS_H
39 #define DTL_LCS_H
40 
41 namespace dtl {
42 
46  template <typename elem>
47  class Lcs : public Sequence< elem >
48  {
49  public :
50  Lcs () {}
51  ~Lcs () {}
52  };
53 }
54 
55 #endif // DTL_LCS_H
dtl::Lcs
Definition: Lcs.hpp:47
dtl::Lcs::~Lcs
~Lcs()
Definition: Lcs.hpp:51
dtl
Definition: Diff.hpp:41
dtl::Lcs::Lcs
Lcs()
Definition: Lcs.hpp:50
dtl::Sequence
Definition: Sequence.hpp:47