2003-05-13 14:36:24 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2005-01-06 16:44:04 +00:00
|
|
|
|
* \file convert.h
|
2003-05-13 14:36:24 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
2005-01-06 15:40:49 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2003-05-13 14:36:24 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-05-13 14:36:24 +00:00
|
|
|
|
*
|
|
|
|
|
* A collection of string helper functions that works with string.
|
|
|
|
|
* Some of these would certainly benefit from a rewrite/optimization.
|
|
|
|
|
*/
|
|
|
|
|
|
2005-01-06 16:44:04 +00:00
|
|
|
|
#ifndef CONVERT_H
|
|
|
|
|
#define CONVERT_H
|
2003-05-13 14:36:24 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2005-01-06 16:07:02 +00:00
|
|
|
|
template <class Target, class Source>
|
|
|
|
|
Target convert(Source arg);
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2003-05-13 14:36:24 +00:00
|
|
|
|
#endif
|