Program Listing for File iscaler.hpp

Return to documentation for file (fang-mcb-project/src/util/algorithm/iscaler.hpp)

#pragma once
namespace fang::algorithm
{
    class IScaler
    {
        virtual double getScale() const = 0;
    };
}