Free Electron
ParserI.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __signal_ParserI_h__
8 #define __signal_ParserI_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Interface to handle a sequence (vector) of tokens/words/strings.
17 
18  @ingroup signal
19 
20  see @ref component_binding
21 *//***************************************************************************/
22 class ParserI:
23  virtual public Component,
24  public CastableAs<ParserI>
25 {
26  public:
27 virtual void parse(Array<String> &tokens) = 0;
28 };
29 
30 } /* namespace ext */
31 } /* namespace fe */
32 
33 #endif /* __signal_ParserI_h__ */
34 
kernel
Definition: namespace.dox:3
Interface to handle a sequence (vector) of tokens/words/strings.
Definition: ParserI.h:22
Wrapper for std::vector.
Definition: Array.h:21
Base for all interfacable components.
Definition: Component.h:20
Per-class participation non-RTTI fallback dynamic casting mechanism.
Definition: Castable.h:192