Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / OliasSearch / ResultID.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 // $TOG: ResultID.C /main/7 1997/08/12 12:59:24 samborn $
24 #define C_ResultID
25 #define L_OliasSearch
26 #include <Prelude.h>
27
28 ResultID::ResultID (UAS_Pointer<UAS_SearchResults> res): fResults(res) {
29 }
30
31 ResultID::~ResultID () {
32 }
33
34 int
35 ResultID::ndocs () {
36     return fResults->num_docs();
37 }
38
39 UAS_String
40 ResultID::sq () {
41     UAS_String& temp_string =  *(UAS_String*)fResults->query();
42     return temp_string;
43 }
44
45 const char *
46 ResultID::display_as () {
47 #ifdef __osf__
48     UAS_String& temp_string =  *(UAS_String*)fResults->query();
49     return (char *) temp_string;
50 #else
51     return (char *)*(UAS_String *) fResults->query();
52 #endif
53 }
54
55 UAS_Pointer<UAS_SearchResults>
56 ResultID::results() {
57     return fResults;
58 }