X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fbuilder%2Foptional-value.h;h=afa45671fe7fd3a1a5649cae09de2c3b2d8740d3;hp=51421ac81bdf56cf6e835844f2dee5a5b5dd9996;hb=f4c1e7f52d49c3ce033b9ee4c3c7414b06a22d45;hpb=e2eda444afbe82e9591fe198eef339227f90a616 diff --git a/dali-toolkit/internal/builder/optional-value.h b/dali-toolkit/internal/builder/optional-value.h index 51421ac..afa4567 100644 --- a/dali-toolkit/internal/builder/optional-value.h +++ b/dali-toolkit/internal/builder/optional-value.h @@ -1,23 +1,23 @@ #ifndef __DALI_TOOLKIT_INTERNAL_BUILDER_OPTIONAL__ #define __DALI_TOOLKIT_INTERNAL_BUILDER_OPTIONAL__ -// -// Copyright (c) 2014 Samsung Electronics Co., Ltd. -// -// Licensed under the Flora License, Version 1.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://floralicense.org/license/ -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an AS IS BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// +/* + * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ -// INTERNAL INCLUDES template struct OptionalTypes { @@ -25,7 +25,7 @@ struct OptionalTypes typedef const T& ReturnType; static ReturnType Get(const ValueType& v) { return v; } static ValueType Set(const ReturnType v) { return v; } - static bool Ok(const ValueType v) { return true; } + static bool Ok(const ValueType& v) { return true; } }; template @@ -67,26 +67,24 @@ public: return mOk == true ? &OptionalValue::this_type_does_not_support_comparisons : 0; } - template - bool operator!=( const OT& rhs ) - { - this->this_type_does_not_support_comparisons(); - return false; - } - - template - bool operator==( const OT& rhs ) - { - this->this_type_does_not_support_comparisons(); - return false; - } - private: bool mOk; ValueType mValue; void this_type_does_not_support_comparisons() const {} - // todo operator=() ? use OptionalTypes::Ok(mValue) }; +template +bool operator==( const OptionalValue& lhs, const OptionalValue& rhs ) +{ + lhs.this_type_does_not_support_comparisons(); + return false; +} + +template +bool operator!=( const OptionalValue& lhs, const OptionalValue& rhs ) +{ + lhs.this_type_does_not_support_comparisons(); + return false; +} #endif // header