
/*******************************  LICENSE  *******************************

 * (C) Copyright 1996-2016 ECMWF.
 *
 * This software is licensed under the terms of the Apache Licence Version 2.0
 * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
 * In applying this licence, ECMWF does not waive the privileges and immunities
 * granted to it by virtue of its status as an intergovernmental organisation nor
 * does it submit to any jurisdiction.

 *******************************  LICENSE  *******************************/

/*! \fileNoBoxPlotAttributes.h
    \brief Definition of NoBoxPlot Attributes class.

    This file is automatically generated.
    Do Not Edit!

    Generated: 
*/


#ifndef NoBoxPlotWrapper_H
#define NoBoxPlotWrapper_H

#include "magics.h"
#include "ParameterManager.h"
#include "Factory.h"



#include "BoxPlotItem.h"










namespace magics {

class MagRequest;



class NoBoxPlotWrapper

{
public:
//  --  constructor
    NoBoxPlotWrapper();
    NoBoxPlotWrapper(NoBoxPlot*);
//  --  destructor
    virtual ~NoBoxPlotWrapper();
    virtual void set(const MagRequest&);

    NoBoxPlot* me()   { return noboxplot_; }

   	virtual NoBoxPlot* object() { return noboxplot_; }


	virtual void object(NoBoxPlot* o) {
		// Remember to delete the previous object
		noboxplot_ = o;
		

	}



protected:
    NoBoxPlot* noboxplot_;


//  --  method
	virtual void print(ostream&) const;


private:
    string tag_;
	friend ostream& operator<<(ostream& s,const NoBoxPlotWrapper& p)
	{ p.print(s); return s; }
};

} // namespace magics

#endif