/* * Copyright 2018 SIB Visions GmbH * * 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. * * * History * * dd.MM.yyyy - [XX] - creation */ #import "Bar.h" /*! @class Foo @abstract Foo provides a UI element. @discussion A Foo object is a simple view that can do two things: Jump, Run. */ @interface Foo : Bar { #pragma mark - #pragma mark Instance variable declarations @private /*! @var value the value of foo. */ float value; } #pragma mark - #pragma mark Property declarations /*! @property value the value property. */ @property float value; #pragma mark - #pragma mark Initialization /*! @method initWithString: @abstract Creates a new foo with string representation of width and height. @param pString the width and height @result a new Foo instance. */ - (id)initWithString:(NSString *)pString; #pragma mark - #pragma mark Method declarations /*! @method concatWidth:height: @abstract Concatenates the width and height. @param pWidth the width. @param pHeight the height. @result the string representation. */ + (NSString *)concatWidth:(float)pWidth height:(float):pHeight; /*! @method setWidth:height: @abstract Sets the foo width and height. @param pWidth the width. @param pHeight the height. */ - (void)setWidth:(float)pWidth height:(float)pHeight; @end