]> git.lyx.org Git - features.git/blob - src/frontends/gtk/IdSc.h
Replace LString.h with support/std_string.h,
[features.git] / src / frontends / gtk / IdSc.h
1 // -*- C++ -*-
2 /**
3  * \file IdSc.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Huang Ying
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef ID_SC_H
13 #define ID_SC_H
14
15 #include "support/std_string.h"
16
17 namespace id_sc
18 {
19
20 /// Extract shortcut from "<identifer>|<shortcut>" string
21 string const shortcut(string const &);
22
23 /// Extract identifier from "<identifer>|<shortcut>" string
24 string const id(string const &);
25
26 }
27
28 #endif