#ifndef OPENSHOT_FRACTION_H #define OPENSHOT_FRACTION_H /** * @file * @brief Header file for Fraction class * @author Copyright (c) 2008-2013 OpenShot Studios, LLC */ namespace openshot { /** * @brief This class represents a fraction * * Fractions are often used in video editing to represent ratios and rates, for example: * pixel ratios, frames per second, timebase, and other common ratios. Fractions are preferred * over decimals due to their increased precision. */ class Fraction { public: int num; ///