Skip to content
Snippets Groups Projects
Commit b5ed4255 authored by Richard Schwarting's avatar Richard Schwarting
Browse files

* break comment over more lines

parent 6629561d
Branches
Tags
No related merge requests found
/* -*- Mode: vala; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* -*- Mode: vala; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
namespace GXml.Dom { namespace GXml.Dom {
// TODO: libxml2 doesn't seem to have PI objects, but does have a function to call when one is parsed. Let's not worry about supporting this for right now. // TODO: libxml2 doesn't seem to have PI objects, but does
// have a function to call when one is parsed. Let's not
// worry about supporting this for right now.
public class ProcessingInstruction : XNode { public class ProcessingInstruction : XNode {
internal ProcessingInstruction (string target, string data, Document doc) { internal ProcessingInstruction (string target, string data, Document doc) {
base (NodeType.PROCESSING_INSTRUCTION, doc); // TODO: want to pass a real Xml.Node* ? base (NodeType.PROCESSING_INSTRUCTION, doc); // TODO: want to pass a real Xml.Node* ?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment