~ubuntu-branches/ubuntu/saucy/faust/saucy

« back to all changes in this revision

Viewing changes to compiler/generator/klass.hh

  • Committer: Package Import Robot
  • Author(s): Mario Lang
  • Date: 2012-04-04 13:52:01 UTC
  • mfrom: (1.1.6) (3.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20120404135201-hpsrk87x3hga94tc
Tags: 0.9.46-2
* Fix "ftbfs with GCC-4.7":
  - debian/patches/unistd: Include <unistd.h> where necessary.
    (Closes: #667163)

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
 
116
116
    void    openLoop(const string& size);
117
117
    void    openLoop(Tree recsymbol, const string& size);
118
 
    void    closeLoop(Tree sig=0);
 
118
    void    closeLoop(Tree sig);
119
119
 
120
120
    void    setLoopProperty(Tree sig, Loop* l);     ///< Store the loop used to compute a signal
121
121
    bool    getLoopProperty(Tree sig, Loop*& l);    ///< Returns the loop used to compute a signal
 
122
    const string&    getClassName() const { return fKlassName; }    ///< Returns the name of the class
122
123
 
123
124
    Loop*   topLoop()   { return fTopLoop; }
124
125