Inferno  0.2
generate_implicit_casts.hpp
Go to the documentation of this file.
00001 /*
00002  * generate_implicit_casts.hpp
00003  *
00004  *  Created on: 20 Oct 2009
00005  *      Author: jgraley
00006  */
00007 
00008 #ifndef GENERATE_IMPLICIT_CASTS_HPP
00009 #define GENERATE_IMPLICIT_CASTS_HPP
00010 
00011 #include "sr/search_replace.hpp"
00012 
00013 namespace Steps {
00014 
00015 /** Wherever an argument to a function call differs in type from
00016     the funciton's declaration, insert a cast to the declared
00017     type. */
00018 class GenerateImplicitCasts : public SearchReplace
00019 {
00020 public:
00021   GenerateImplicitCasts();
00022 };
00023 
00024 }; // end namespace
00025 
00026 #endif /* GENERATE_IMPLICIT_CASTS_HPP */