]> git.lyx.org Git - lyx.git/blob - src/support/convert.h
the convert patch
[lyx.git] / src / support / convert.h
1 // -*- C++ -*-
2 /**
3  * \file convert.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  * \author Lars Gullik Bjønnes
9  *
10  * Full author contact details are available in file CREDITS.
11  *
12  * A collection of string helper functions that works with string.
13  * Some of these would certainly benefit from a rewrite/optimization.
14  */
15
16 #ifndef CONVERT_H
17 #define CONVERT_H
18
19 template <class Target, class Source>
20 Target convert(Source arg);
21
22 #endif