/JMRConstantMappingType.h

http://rtm2cocoa.googlecode.com/ · C Header · 21 lines · 7 code · 5 blank · 9 comment · 0 complexity · 94281e1ca008624f74ecd4d9e9473cd7 MD5 · raw file

  1. //
  2. // JMRConstantMappingType.h
  3. // Excelsior
  4. //
  5. /*
  6. This work is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
  7. */
  8. #import <Foundation/Foundation.h>
  9. #import "JMRScalarMappingType.h"
  10. @interface JMRConstantMappingType : JMRScalarMappingType {
  11. }
  12. -(id)initWithDefaultString:(NSString *)value;
  13. +(JMRConstantMappingType *)constantMappingWithDefaultString:(NSString *)value;
  14. @end