CC_Tokenizer.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 libraries 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. #include "CC_String.h"
  27. #define X_INCLUDE_STRING_H
  28. #define XOS_USE_NO_LOCKING
  29. #include <X11/Xos_r.h>
  30. class CC_Tokenizer {
  31. private:
  32. char *current_ptr;
  33. char *str_;
  34. CC_Boolean touched;
  35. _Xstrtokparams strtok_buf;
  36. public:
  37. CC_Tokenizer(const CC_String & );
  38. ~CC_Tokenizer() { delete [] str_; }
  39. /* Here is an example to use the code
  40. * CC_String b("This is a string");
  41. * CC_Tokenizer next( b );
  42. * while ( next() ) {
  43. * cout << next.data() << endl;
  44. * }
  45. */
  46. CC_Boolean operator()(); /* returns TRUE if next token exists,
  47. * FALSE if otherwise
  48. */
  49. const char *data() { return(current_ptr); } /* returns the current token */
  50. };
  51. #endif