#pragma once #include "Layer.h" class TemperatureMixerLayer : public Layer { private: std::shared_ptrtemp; int layer; public: TemperatureMixerLayer(std::shared_ptrtemp, std::shared_ptrparent, int layer); virtual intArray getArea(int xo, int yo, int w, int h); };