Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/GenInit.h

    r16ba4a6f rb8524ca  
    3333        /// generates a single ctor/dtor statement using objDecl as the 'this' parameter and arg as the optional argument
    3434        ImplicitCtorDtorStmt * genCtorDtor( const std::string & fname, ObjectDecl * objDecl, Expression * arg = nullptr );
    35         ast::ptr<ast::Stmt> genCtorDtor (const CodeLocation & loc, const std::string & fname, const ast::ObjectDecl * objDecl, const ast::Expr * arg = nullptr);
    3635
    3736        /// creates an appropriate ConstructorInit node which contains a constructor, destructor, and C-initializer
     
    5251                GenPoly::ScopedSet< std::string > managedTypes;
    5352        };
    54 
    55         class ManagedTypes_new {
    56         public:
    57                 bool isManaged( const ast::ObjectDecl * objDecl ) const ; // determine if object is managed
    58                 bool isManaged( const ast::Type * type ) const; // determine if type is managed
    59 
    60                 void handleDWT( const ast::DeclWithType * dwt ); // add type to managed if ctor/dtor
    61                 void handleStruct( const ast::StructDecl * aggregateDecl ); // add type to managed if child is managed
    62 
    63                 void beginScope();
    64                 void endScope();
    65         private:
    66                 GenPoly::ScopedSet< std::string > managedTypes;
    67         };
    6853} // namespace
    6954
Note: See TracChangeset for help on using the changeset viewer.