/*
 *  VolumePainterCell.h
 *  lsystems_one
 *
 *  Created by lewhill2 on Fri Mar 12 2004.
 *  Copyright (c) 2004 __MyCompanyName__. All rights reserved.
 *
 */

#ifndef _MIDI_VIZ_VOLUME_PAINTER_CELL_
#define _MIDI_VIZ_VOLUME_PAINTER_CELL_

#define TRUE 1
#define FALSE 0


class MidiVizVolumePainterCell {

public:
	
	MidiVizVolumePainterCell();
	~MidiVizVolumePainterCell();

	void setFilled();
	void setEmpty();
	int isOccupied();
	void setColor(float r, float g, float b);
	float * getColor();
	
private:
	int occupied;
	float color[3];
	
};

#endif

