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

« back to all changes in this revision

Viewing changes to frontends/CsoundAC/Event.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:
69
69
   * but they are always real-time score statements at time 0, suitable
70
70
   * for use with Csound's -L or line event option.
71
71
   */
72
 
  class Event :
 
72
  class SILENCE_PUBLIC Event :
73
73
    public ublas::vector<double>
74
74
  {
75
75
  public:
167
167
#endif
168
168
  };
169
169
 
170
 
  bool operator < (const Event& a, const Event &b);
 
170
  bool SILENCE_PUBLIC operator < (const Event& a, const Event &b);
171
171
}
172
172
#endif