yaml.h 278 B

12345678910111213
  1. #ifndef _IPYML_YAML_H
  2. #define _IPYML_YAML_H
  3. #include <ostream> // std::ostream
  4. typedef unsigned char yaml_indent_level_t;
  5. class YamlObject {
  6. virtual void write_yaml(std::ostream &stream,
  7. yaml_indent_level_t indent_level = 0) const = 0;
  8. };
  9. #endif