Index: runtime/embedders/openglui/common/isized.h |
=================================================================== |
--- runtime/embedders/openglui/common/isized.h (revision 0) |
+++ runtime/embedders/openglui/common/isized.h (revision 0) |
@@ -0,0 +1,16 @@ |
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+#ifndef EMBEDDERS_OPENGLUI_COMMON_ISIZED_H_ |
+#define EMBEDDERS_OPENGLUI_COMMON_ISIZED_H_ |
+ |
+class ISized { |
vsm
2013/01/14 21:31:40
Can you add a comment on this as to what it is and
gram
2013/01/16 01:49:16
Done.
|
+ public: |
+ virtual const int32_t& height() = 0; |
+ virtual const int32_t& width() = 0; |
+ virtual ~ISized() {} |
+}; |
+ |
+#endif // EMBEDDERS_OPENGLUI_COMMON_ISIZED_H_ |
+ |