class within an interface?
class within an interface?
- Subject: class within an interface?
- From: "Brian O'Brien" <email@hidden>
- Date: Wed, 30 Mar 2005 15:57:16 -0700
I have an interface and within it I want to hold a class...
Must that be a pointer to a class?
#include "Tensor.h"
@interface MyImageView : NSImageView
{
Tensor<unsigned short> series;
}
or
@interface MyImageView : NSImageView
{
Tensor<unsigned short> * series;
}
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden