Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 1, 2013, 10:57:34 AM (11 years ago)
Author:
landauf
Message:

context is now a Listable itself as well

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core6/src/libraries/core/object/Listable.cc

    r9608 r9610  
    4848
    4949    /**
     50        @brief Constructor: Allocates space in the element list and assignes the context
     51    */
     52    Listable::Listable(Context* context)
     53    {
     54        this->context_ = context;
     55        this->elements_.reserve(6);
     56    }
     57
     58    /**
    5059        @brief Destructor: Removes the object from the object-lists
    5160    */
Note: See TracChangeset for help on using the changeset viewer.