Remove UNSIGNED_INTEGER property type as it does not fully work and causes headache
[platform/core/uifw/dali-core.git] / dali / internal / update / common / double-buffered-property.h
index 857a0db..0b23260 100644 (file)
@@ -242,24 +242,6 @@ public:
 };
 
 template<>
-class DoubleBufferedProperty<unsigned int> : public DoubleBufferedPropertyImpl<unsigned int>
-{
-public:
-  /**
-   * Constructor
-   */
-  DoubleBufferedProperty( unsigned int value ) : DoubleBufferedPropertyImpl( value ) {};
-
-  /**
-   * copydoc PropertyInputImpl::GetUnsignedInteger
-   */
-  virtual const unsigned int& GetUnsignedInteger( BufferIndex bufferIndex ) const
-  {
-    return mValue[bufferIndex];
-  }
-};
-
-template<>
 class DoubleBufferedProperty<float> : public DoubleBufferedPropertyImpl<float>
 {
 public: