~ubuntu-branches/ubuntu/precise/csound/precise

« back to all changes in this revision

Viewing changes to frontends/CsoundAC/Node.hpp

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2012-04-19 09:26:46 UTC
  • mfrom: (3.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20120419092646-96xbj1n6atuqosk2
Tags: 1:5.17.6~dfsg-1
* New upstream release
 - Do not build the wiimote opcodes (we need wiiuse).
* Add new API function to symbols file
* Disable lua opcodes, they were broken. Requires OpenMP to be enabled.
* Backport fixes from upstream:
  - Link dssi4cs with dl. Backport
  - Fix building of CsoundAC

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
   * Nodes can transform silence::Events produced by child nodes.
46
46
   * Nodes can produce silence::Events.
47
47
   */
48
 
  class Node
 
48
  class SILENCE_PUBLIC Node
49
49
  {
50
50
  protected:
51
51
    ublas::matrix<double> localCoordinates;
69
69
                                           Score &score);
70
70
    /**
71
71
     * The default implementation does nothing.
72
 
     * Derived nodes that produce notes from scratch should 
73
 
     * transform them using the composite transformation of 
 
72
     * Derived nodes that produce notes from scratch should
 
73
     * transform them using the composite transformation of
74
74
     * coordinate system, which is passed in from the traverse() function.
75
75
     */
76
76
    virtual void produceOrTransform(Score &score,
84
84
    virtual void addChild(Node *node);
85
85
  };
86
86
  typedef Node* NodePtr;
87
 
  
 
87
 
88
88
  /**
89
89
   * Removes all duplicate events produced by the child nodes of this.
90
90
   */
91
 
  class RemoveDuplicates : public Node
 
91
  class SILENCE_PUBLIC RemoveDuplicates : public Node
92
92
  {
93
93
    public:
94
94
    virtual void produceOrTransform(Score &score,
95
95
                                    size_t beginAt,
96
96
                                    size_t endAt,
97
97
                                    const ublas::matrix<double> &compositeCordinates);
98
 
        
 
98
 
99
99
  };
100
100
}
101
101
#endif
102