EpochPlotConfigNode.hh 747 Bytes
/*
 * EpochPlotConfigNode.hh
 *
 *  Created on: Jan 16, 2015
 *      Author: AKKA
 */

#ifndef EPOCHPLOTCONFIGNODE_HH_
#define EPOCHPLOTCONFIGNODE_HH_

#include <string>

#include "AbstractPlotConfigNode.hh"

namespace plot {



class EpochPlotConfigNode: public plot::AbstractPlotConfigNode {
public:
	EpochPlotConfigNode();
	virtual ~EpochPlotConfigNode();

protected:
	/**
	 * @overload plot::AbstractPanelPlotNode::geNodeName
	 */
	const std::string& getNodeName();

private:
	/**
	 * constant to uniquely identify this node in the registry
	 */
	static const std::string NODENAME;
	/**
	 * artificial special attribute to force registering node.
	 */
	static std::string _key;
};

} /* namespace plot */

#endif /* EPOCHPLOTCONFIGNODE_HH_ */