mirror of
https://github.com/RPCS3/yaml-cpp.git
synced 2026-01-31 01:25:20 +01:00
11 lines
133 B
C++
11 lines
133 B
C++
#pragma once
|
|
|
|
namespace YAML
|
|
{
|
|
class Node;
|
|
|
|
struct ltnode {
|
|
bool operator()(const Node *pNode1, const Node *pNode2) const;
|
|
};
|
|
}
|