~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to src/auxmusic/Composer.cpp

  • Committer: cecilios
  • Date: 2007-05-19 11:39:03 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:trunk:236

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//--------------------------------------------------------------------------------------
 
2
//    LenMus Phonascus: The teacher of music
 
3
//    Copyright (c) 2002-2007 Cecilio Salmeron
 
4
//
 
5
//    This program is free software; you can redistribute it and/or modify it under the 
 
6
//    terms of the GNU General Public License as published by the Free Software Foundation;
 
7
//    either version 2 of the License, or (at your option) any later version.
 
8
//
 
9
//    This program is distributed in the hope that it will be useful, but WITHOUT ANY 
 
10
//    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
 
11
//    PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 
12
//
 
13
//    You should have received a copy of the GNU General Public License along with this 
 
14
//    program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, 
 
15
//    Fifth Floor, Boston, MA  02110-1301, USA.
 
16
//
 
17
//    For any comment, suggestion or feature request, please contact the manager of 
 
18
//    the project at cecilios@users.sourceforge.net
 
19
//
 
20
//-------------------------------------------------------------------------------------
 
21
 
 
22
/*! @class lmComposer 
 
23
    @ingroup score_kernel
 
24
    @brief An algorithm to synthesize a score.
 
25
 
 
26
    lmComposer is an abstract class to implement different algorithms to synthesize
 
27
    a music score.
 
28
    To isolate the algorithm so that I can easily change it and experiment
 
29
    I encapsulate algoritms in objects, all of them a specialization of the generic
 
30
    class lmComposer
 
31
*/
 
32
 
 
33
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 
34
#pragma implementation "Composer.h"
 
35
#endif
 
36
 
 
37
// For compilers that support precompilation, includes "wx/wx.h".
 
38
#include "wx/wxprec.h"
 
39
 
 
40
#ifdef __BORLANDC__
 
41
#pragma hdrstop
 
42
#endif
 
43
 
 
44
#ifndef WX_PRECOMP
 
45
#include "wx/wx.h"
 
46
#endif
 
47
 
 
48
#include "Composer.h"
 
49
 
 
50
lmComposer::lmComposer()
 
51
{
 
52
    //
 
53
}
 
 
b'\\ No newline at end of file'