// Copyright 2016, Tobias Hermann. // https://github.com/Dobiasd/frugally-deep // Distributed under the MIT License. // (See accompanying LICENSE file or at // https://opensource.org/licenses/MIT) #pragma once #include "fdeep/common.hpp" #include #include #include namespace fdeep { namespace internal { class shape2_variable { public: explicit shape2_variable( fplus::maybe height, fplus::maybe width) : height_(height), width_(width) { } fplus::maybe height_; fplus::maybe width_; }; } } // namespace fdeep, namespace internal