Ejemplo n.º 1
0
void VariantInt64::print (StringBuffer& buffer, size_t) const {
    buffer.appendText("(int64) ");
    buffer.appendInteger(getValue());
    buffer.appendEol();
}
Ejemplo n.º 2
0
void VariantNull::print (StringBuffer& buffer, size_t) const {
  buffer.appendText("(null)");
  buffer.appendEol();
}
Ejemplo n.º 3
0
void VariantString::print (StringBuffer& buffer, size_t) const {
  buffer.appendText(_value.c_str(), _value.length());
  buffer.appendEol();
}
Ejemplo n.º 4
0
void VariantDate::print (StringBuffer& buffer, size_t) const {
  buffer.appendText("(date) ");
  buffer.appendDecimal(getValue());
  buffer.appendEol();
}