Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

objc_property.h
/* For use with the objc_property.m PCH test */
@interface TestProperties
{
  int value;
  float percentage;
}

+ alloc;

@property int value;
@property float percentage;
@end