mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
13 lines
125 B
C++
13 lines
125 B
C++
#pragma once
|
|
|
|
namespace YAML
|
|
{
|
|
class Content
|
|
{
|
|
public:
|
|
Content();
|
|
virtual ~Content();
|
|
|
|
protected:
|
|
};
|
|
}
|