Remove unnecessary stream operators from radian and degree as well as unnecessary...
[platform/core/uifw/dali-core.git] / dali / public-api / math / degree.h
index 5cec5f1..292a01c 100644 (file)
@@ -18,9 +18,6 @@
  *
  */
 
-// EXTERNAL INCLUDES
-#include <ostream>
-
 // INTERNAL INCLUDES
 #include <dali/public-api/common/constants.h>
 #include <dali/public-api/common/dali-common.h>
@@ -106,18 +103,6 @@ inline Degree Clamp( Degree angle, float min, float max )
   return Degree( Clamp<float>( angle.degree, min, max ) );
 }
 
-/**
- * @brief Stream a degree value
- * @param [in] ostream The output stream to use.
- * @param [in] angle in Degree.
- * @return The output stream.
- */
-inline std::ostream& operator<<( std::ostream& ostream, Degree angle )
-{
-  ostream << angle.degree;
-  return ostream;
-}
-
 } // namespace Dali
 
 #endif // __DALI_DEGREE_H__