/src/aspell/common/string_pair.hpp
Line | Count | Source |
1 | | /* This file is part of The New Aspell |
2 | | * Copyright (C) 2001-2002 by Kevin Atkinson under the GNU LGPL |
3 | | * license version 2.0 or 2.1. You should have received a copy of the |
4 | | * LGPL license along with this library if you did not you can find it |
5 | | * at http://www.gnu.org/. */ |
6 | | |
7 | | #ifndef ASPELL_STRING_PAIR__HPP |
8 | | #define ASPELL_STRING_PAIR__HPP |
9 | | |
10 | | namespace acommon { |
11 | | |
12 | | struct StringPair { |
13 | | const char * first; |
14 | | const char * second; |
15 | | StringPair(const char * f, const char * s) |
16 | 58.0k | : first(f), second(s) {} |
17 | 0 | StringPair() : first(""), second("") {} |
18 | | }; |
19 | | |
20 | | } |
21 | | |
22 | | #endif /* ASPELL_STRING_PAIR__HPP */ |