#include "DataType.h" namespace Databoard { namespace Type { DataType::DataType() { notBuiltIn = false; } DataType::~DataType() { } std::string DataType::writeOut(int indent) { std::string s; s.append(2 * indent, ' '); return s; } void DataType::setNotBuiltIn() { notBuiltIn = true; } bool DataType::getNotBuiltIn() { return notBuiltIn; } } }