コード例 #1
0
	// pointer to pointer
	void operator()(BlendFilePointerToPointer ptr) const
	{
		_output << "<a href='block-0x";
		_output << std::hex << ptr.Value() << std::dec;
		_output << ".html'>0x";
		_output << std::hex << ptr.Value() << std::dec;
		_output << "</a> (pointer to pointer)";
	}
コード例 #2
0
	// pointer to pointer
	void VisitPPtr(BlendFilePointerToPointer ptr)
	{
		_output << "<a href='block-0x";
		_output << std::hex << ptr.Value() << std::dec;
		_output << ".html'>0x";
		_output << std::hex << ptr.Value() << std::dec;
		_output << "</a> (pointer to pointer)";
	}