mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
11 lines
143 B
C++
11 lines
143 B
C++
#pragma once
|
|
|
|
namespace YAML
|
|
{
|
|
class Node;
|
|
|
|
struct ltnode {
|
|
bool operator()(const Node *pNode1, const Node *pNode2) const;
|
|
};
|
|
}
|