Ignore:
Timestamp:
02/26/18 20:38:20 (6 years ago)
Author:
Maciej Komosinski
Message:

ParamTree? constructor changed (to make it easier for javascript) to accept ParamInterface?* instead of ParamInterface?&

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/param/paramtree.cpp

    r734 r744  
    4040}
    4141
    42 ParamTree::ParamTree(ParamInterface &_pi)
    43         :pi(_pi)
     42ParamTree::ParamTree(ParamInterface *_pi)
     43        :pi(*_pi)
    4444{
    4545        int g;
Note: See TracChangeset for help on using the changeset viewer.