mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 04:41:16 +00:00
14 lines
125 B
C++
14 lines
125 B
C++
#pragma once
|
|
|
|
namespace YAML
|
|
{
|
|
class Content
|
|
{
|
|
public:
|
|
Content();
|
|
virtual ~Content();
|
|
|
|
protected:
|
|
};
|
|
}
|