blob: 01c5e8b5c37ec7cf8781e8bc8e87341b08d3e6d1 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COBALT_MATH_INSETS_F_H_
#define COBALT_MATH_INSETS_F_H_
#include <string>
#include "cobalt/math/insets_base.h"
namespace cobalt {
namespace math {
// A floating-point version of Insets.
class InsetsF : public InsetsBase<InsetsF, float> {
public:
InsetsF();
InsetsF(float left, float top, float right, float bottom);
~InsetsF();
// Returns a string representation of the insets.
std::string ToString() const;
};
extern template class InsetsBase<InsetsF, float>;
} // namespace math
} // namespace cobalt
#endif // COBALT_MATH_INSETS_F_H_