Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 15th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. //
  2. //  CondimentDecorator_Description.h
  3. //  StarBuzz
  4. //
  5. //  Created by Takushi Homma on 12/07/21.
  6. //  Copyright (c) 2012年 mfmf.me. All rights reserved.
  7. //
  8.  
  9. #import "CondimentDecorator.h"
  10.  
  11. /**
  12.  *  調味料の説明を返すメソッドを定義します.
  13.  */
  14. @interface CondimentDecorator ()
  15.  
  16. /**
  17.  *  説明を返します.
  18.  */
  19. - (NSString *)description;
  20.  
  21. @end