Index: src/CodeTools/DeclStats.cc
===================================================================
--- src/CodeTools/DeclStats.cc	(revision 41a7137de5c42b8cb1bc898ffbadea8141f9c410)
+++ src/CodeTools/DeclStats.cc	(revision 41a7137de5c42b8cb1bc898ffbadea8141f9c410)
@@ -0,0 +1,32 @@
+//
+// 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.
+//
+// DeclStats.cc --
+//
+// Author           : Aaron Moss
+// Created On       : Wed Jan 31 16:40:00 2016
+// Last Modified By : Aaron Moss
+// Last Modified On : Wed Jan 31 16:40:00 2016
+// Update Count     : 1
+//
+
+#include "DeclStats.h"
+
+#include <iostream>
+
+namespace CodeTools {
+
+	void printDeclStats( std::list< Declaration * > &translationUnit ) {
+		std::cout << "DeclStats not yet implemented." << std::endl;
+	}
+	
+} // namespace CodeTools
+
+// Local Variables: //
+// tab-width: 4 //
+// mode: c++ //
+// compile-command: "make install" //
+// End: //
Index: src/CodeTools/DeclStats.h
===================================================================
--- src/CodeTools/DeclStats.h	(revision 41a7137de5c42b8cb1bc898ffbadea8141f9c410)
+++ src/CodeTools/DeclStats.h	(revision 41a7137de5c42b8cb1bc898ffbadea8141f9c410)
@@ -0,0 +1,33 @@
+//
+// 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.
+//
+// DeclStats.h -- Prints summary information about a translation unit's declarations.
+//
+// Author           : Aaron Moss
+// Created On       : Wed Jan 31 16:40:00 2016
+// Last Modified By : Aaron Moss
+// Last Modified On : Wed Jan 31 16:40:00 2016
+// Update Count     : 1
+//
+
+#ifndef DECLSTATS_H
+#define DECLSTATS_H
+
+#include "SynTree/SynTree.h"
+
+namespace CodeTools {
+
+	void printDeclStats( std::list< Declaration * > &translationUnit );
+	
+}  // namespace CodeTools
+
+#endif // DECLSTATS_H
+
+// Local Variables: //
+// tab-width: 4 //
+// mode: c++ //
+// compile-command: "make install" //
+// End: //
Index: src/CodeTools/module.mk
===================================================================
--- src/CodeTools/module.mk	(revision 41a7137de5c42b8cb1bc898ffbadea8141f9c410)
+++ src/CodeTools/module.mk	(revision 41a7137de5c42b8cb1bc898ffbadea8141f9c410)
@@ -0,0 +1,17 @@
+######################### -*- Mode: Makefile-Gmake -*- ########################
+##
+## 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.
+##
+## module.mk --
+##
+## Author           : Richard C. Bilson
+## Created On       : Mon Jun  1 17:49:17 2015
+## Last Modified By : Aaron Moss
+## Last Modified On : Wed Jan 31 16:36:00 2017
+## Update Count     : 2
+###############################################################################
+
+SRC += CodeTools/DeclStats.cc
