Go to file
Tomasz Sowa 5d34db5fcf added to Space:
- methods for testing a string value if a Space is a string or a table:
  bool has_value(const char * val) const;
  bool has_value(const std::string & val) const;
  bool has_value(const wchar_t * val) const;
  bool has_value(const std::wstring & val) const;
- methods for testing a string value in an object (testing a string or a table):
  bool has_value(const wchar_t * field, const char * val) const;
  bool has_value(const wchar_t * field, const std::string & val) const;
  bool has_value(const wchar_t * field, const wchar_t * val) const;
  bool has_value(const wchar_t * field, const std::wstring & val) const;
- methods for removing a child space:
  void remove_child_space(const wchar_t * name);
  void remove_child_space(const std::wstring & name);
  void remove_child_space(size_t index);
2021-04-09 17:49:44 +02:00
convert changed the way how the library is built 2021-03-17 13:16:01 +01:00
date changed the way how the library is built 2021-03-17 13:16:01 +01:00
log changed the way how the library is built 2021-03-17 13:16:01 +01:00
mainspaceparser changed the way how the library is built 2021-03-17 13:16:01 +01:00
membuffer fixed: operator==() and operator!=() in iterators in MemBuffer<> template 2021-02-17 16:53:19 +01:00
space added to Space: 2021-04-09 17:49:44 +02:00
textstream fixed: in Space: pointers 'name' and 'child_spaces' were not correctly initialized in cctors 2021-04-08 17:16:37 +02:00
utf8 changed the way how the library is built 2021-03-17 13:16:01 +01:00
.gitignore added .gitignore file 2021-02-17 17:04:05 +01:00
Makefile changed the way how the library is built 2021-03-17 13:16:01 +01:00
Makefile.dep make depend 2021-04-08 17:02:27 +02:00