mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
20 lines
356 B
C
20 lines
356 B
C
|
//
|
||
|
// TVLStringAccidentals.h
|
||
|
// VocalEasel
|
||
|
//
|
||
|
// Created by Matthias Neeracher on 8/27/11.
|
||
|
// Copyright 2011 Apple Computer. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface NSString (TVLStringAccidentals)
|
||
|
|
||
|
- (NSString *)sharp;
|
||
|
- (NSString *)flat;
|
||
|
- (NSString *)natural;
|
||
|
- (NSString *)doubleSharp;
|
||
|
- (NSString *)doubleFlat;
|
||
|
|
||
|
@end
|