Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
StringTokenizer.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_STRINGS_STRINGTOKENIZER_H
4#define IMT_BASE_LIB_STRINGS_STRINGTOKENIZER_H
5
8
9#ifdef USE_STL
10
11namespace imt {
12namespace base {
13namespace lib {
14namespace strings {
15
26// AXIVION Next Construct AutosarC++19_03-A0.1.6: not all project use the type
27class StringTokenizer final : private ::imt::base::core::platform::Nonmovable {
28
29public:
30
41 // AXIVION Next Codeline AutosarC++19_03-A5.1.1: magic literal required here
42 explicit StringTokenizer(std::wstring const& string, std::wstring const& delim = L",", bool const doTrimTokens = false);
43
49 bool hasMoreTokens() const;
50
56 std::wstring getNextToken();
57
58private:
59
60 std::wstring m_parseString;
61 std::wstring m_delim;
62 bool m_doTrimTokens;
63 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
64 uint32_t m_position;
65 uint8_t m_delimiterSize;
66};
67
68} // namespace strings
69} // namespace lib
70} // namespace base
71} // namespace imt
72
73#endif // USE_STL
74#endif // IMT_BASE_LIB_STRINGS_STRINGTOKENIZER_H
Base class for a not movable class that disables copy, assignment and move of instances.
Definition Nonmovable.h:51
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62