1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 00:11:17 +02:00

And another one

This commit is contained in:
Eelco Dolstra 2014-02-26 18:55:18 +01:00
parent 432328cc55
commit 91f25f0510
2 changed files with 2 additions and 41 deletions

View file

@ -19,7 +19,7 @@ typedef map<string, string> XMLAttrs;
class XMLWriter
{
private:
std::ostream & output;
bool indent;
@ -40,8 +40,6 @@ public:
void writeEmptyElement(const string & name,
const XMLAttrs & attrs = XMLAttrs());
void writeCharData(const string & data);
private:
void writeAttrs(const XMLAttrs & attrs);
@ -67,5 +65,5 @@ public:
}
};
}