Index: app/gfx/insets.h |
diff --git a/app/gfx/insets.h b/app/gfx/insets.h |
index f5806ac5fc58b897be51614c9c687b9286b7efa0..70b3683191b8674549dcf2cfae48bbfaaec2a4d9 100644 |
--- a/app/gfx/insets.h |
+++ b/app/gfx/insets.h |
@@ -11,6 +11,8 @@ |
#include <gtk/gtkstyle.h> |
#endif |
+#include <string> |
+ |
namespace gfx { |
// |
@@ -76,6 +78,9 @@ class Insets { |
return *this; |
} |
+ // Returns a string representation of the insets. |
+ std::string ToString() const; |
+ |
private: |
int top_; |
int left_; |
@@ -83,6 +88,6 @@ class Insets { |
int right_; |
}; |
-} // namespace |
+} // namespace gfx |
#endif // APP_GFX_INSETS_H_ |