- //
- // CondimentDecorator_Description.h
- // StarBuzz
- //
- // Created by Takushi Homma on 12/07/21.
- // Copyright (c) 2012年 mfmf.me. All rights reserved.
- //
- #import "CondimentDecorator.h"
- /**
- * 調味料の説明を返すメソッドを定義します.
- */
- @interface CondimentDecorator ()
- /**
- * 説明を返します.
- */
- - (NSString *)description;
- @end