From: <pst...@us...> - 2009-02-17 00:49:35
|
Revision: 706 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=706&view=rev Author: pstieber Date: 2009-02-17 00:49:31 +0000 (Tue, 17 Feb 2009) Log Message: ----------- Added a header that contains an enumeration that is useful for setting the value setting mode. Added Paths: ----------- trunk/jazz/src/CommandUtilities.h Added: trunk/jazz/src/CommandUtilities.h =================================================================== --- trunk/jazz/src/CommandUtilities.h (rev 0) +++ trunk/jazz/src/CommandUtilities.h 2009-02-17 00:49:31 UTC (rev 706) @@ -0,0 +1,34 @@ +//***************************************************************************** +// The JAZZ++ Midi Sequencer +// +// Copyright (C) 2009 Peter J. Stieber, all rights reserved. +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +//***************************************************************************** + +#ifndef JZ_COMMANDUTILITIES_H +#define JZ_COMMANDUTILITIES_H + +//***************************************************************************** +//***************************************************************************** +enum JEValueAlterationMode +{ + eSetValues, + eAddValues, + eSubtractValues +}; + + +#endif // !defined(JZ_COMMANDUTILITIES_H) Property changes on: trunk/jazz/src/CommandUtilities.h ___________________________________________________________________ Added: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |