// // 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 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: //