Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / dti_cc / CC_Tokenizer.h
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 /* $XConsortium: CC_Tokenizer.h /main/4 1996/11/04 13:35:14 drk $ */
24 #ifndef __CC_Token_h
25 #define __CC_Token_h
26
27 #include "CC_String.h"
28
29 #define X_INCLUDE_STRING_H
30 #define XOS_USE_NO_LOCKING
31 #include <X11/Xos_r.h>
32
33 class CC_Tokenizer {
34
35 private:
36   char      *current_ptr;
37   char      *str_;
38   CC_Boolean touched;
39   _Xstrtokparams        strtok_buf;
40
41 public:
42   CC_Tokenizer(const CC_String & );
43   ~CC_Tokenizer() { delete str_; }
44
45
46   /* Here is an example to use the code 
47    *     CC_String b("This is a string");
48    *     CC_Tokenizer next( b );
49    *     while ( next() ) {
50    *         cout << next.data() << endl;
51    *     }
52    */
53
54   CC_Boolean operator()();  /* returns TRUE if next token exists, 
55                              * FALSE if otherwise
56                              */
57   const char *data() { return(current_ptr); } /* returns the current token */
58 };
59   
60 #endif
61