/*
 *  FractalRule.h
 *  lsystems_one
 *
 *  Created by lewhill2 on Mon Feb 23 2004.
 *  Copyright (c) 2004 __MyCompanyName__. All rights reserved.
 *
 */

#ifndef _FRACTAL_RULE_H_
#define _FRACTAL_RULE_H_

#include <string>

using namespace std;

class FractalRule {
	
public:
	
	FractalRule();
	FractalRule(char generator_key, string generator);
        FractalRule(const FractalRule& m);
	const FractalRule& operator= (const  FractalRule& right);
	~FractalRule();

				
	char key;
	string rule;

	char getKey();
	string getRule();

};

#endif

