Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/RemoveInit.h

    rcf16f94 re0ff3e6  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Nov 27 17:00:47 2015
    13 // Update Count     : 2
     12// Last Modified On : Tue May 19 16:40:11 2015
     13// Update Count     : 1
    1414//
    1515
     
    2727        /// Adds assignment statements for polymorphic type initializers
    2828        void tweak( std::list< Declaration * > translationUnit );
     29
     30        class RemoveInit : public Mutator {
     31          public:
     32                // RemoveInit();
     33                virtual ObjectDecl *mutate(ObjectDecl *objDecl);
     34                virtual CompoundStmt *mutate(CompoundStmt *compoundStmt);
     35          protected:
     36                std::list< Statement* > stmtsToAddAfter;
     37                void mutateStatementList( std::list< Statement* > &statements );
     38        };
    2939} // namespace
    3040
Note: See TracChangeset for help on using the changeset viewer.