Index: src/SynTree/ZeroOneType.cc
===================================================================
--- src/SynTree/ZeroOneType.cc	(revision 7e1077328aef0bbffbe33b1a3ff3feea08603b66)
+++ src/SynTree/ZeroOneType.cc	(revision 7e1077328aef0bbffbe33b1a3ff3feea08603b66)
@@ -0,0 +1,38 @@
+//
+// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// VarArgsType.cc --
+//
+// Author           : Aaron B. Moss
+// Created On       : Fri Sep 16 14:08:00 2016
+// Last Modified By : Aaron B. Moss
+// Last Modified On : Fri Sep 16 14:08:00 2016
+// Update Count     : 1
+//
+
+#include "Type.h"
+
+ZeroType::ZeroType() : Type( Type::Qualifiers() ) {}
+
+ZeroType::ZeroType( Type::Qualifiers tq ) : Type( tq ) {}
+
+void ZeroType::print( std::ostream &os, int indent ) const {
+	os << "zero_t";
+}
+
+OneType::OneType() : Type( Type::Qualifiers() ) {}
+
+OneType::OneType( Type::Qualifiers tq ) : Type( tq ) {}
+
+void OneType::print( std::ostream &os, int indent ) const {
+	os << "one_t";
+}
+
+// Local Variables: //
+// tab-width: 4 //
+// mode: c++ //
+// compile-command: "make install" //
+// End: //
