~ubuntu-branches/ubuntu/trusty/yade/trusty

« back to all changes in this revision

Viewing changes to core/Functor.hpp

  • Committer: Package Import Robot
  • Author(s): Anton Gladky, cf3f8d9
  • Date: 2013-10-30 20:56:33 UTC
  • mfrom: (20.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20131030205633-1f01r7hjce17d723
Tags: 1.05.0-2
[cf3f8d9] Pass -ftrack-macro-expansion=0 only if gcc>=4.8. (Closes: #726009)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
        Scene* scene;
26
26
        virtual ~Functor(); // defined in Dispatcher.cpp
27
27
        YADE_CLASS_BASE_DOC_ATTRS_CTOR_PY(Functor,Serializable,"Function-like object that is called by Dispatcher, if types of arguments match those the Functor declares to accept.",
28
 
                ((string,label,,,"Textual label for this object; must be valid python identifier, you can refer to it directly fron python (must be a valid python identifier).")),
 
28
                ((string,label,,,"Textual label for this object; must be a valid python identifier, you can refer to it directly from python.")),
29
29
                /*ctor*/
30
30
                #ifdef USE_TIMING_DELTAS
31
31
                        timingDeltas=shared_ptr<TimingDeltas>(new TimingDeltas);