]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/IdSc.h
Change glob() API to accept a dir parameter.
[lyx.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 <string>
16
17 namespace id_sc
18 {
19
20 /// Extract shortcut from "<identifer>|<shortcut>" string
21 std::string const shortcut(std::string const &);
22
23 /// Extract identifier from "<identifer>|<shortcut>" string
24 std::string const id(std::string const &);
25
26 }
27
28 #endif