 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Rupert harrison Guest
|
Posted: Sat Sep 27, 2003 2:39 am Post subject: Templates??? |
|
|
How would i template the object of my class BSTree, which is defined
outside my class.
template <class xtype>
class BSTree
{
class TNode
{
TNode *right;
TNode *left;
public:
char *info;
friend class BSTree <xtpye>;
};
Tnode *root
};
static BSTree mark
(eg. static BSTree mark) so that it has access to my functions in main.?
|
|
| Back to top |
|
 |
Gianni Mariani Guest
|
Posted: Sat Sep 27, 2003 3:39 am Post subject: Re: Templates??? |
|
|
Rupert harrison wrote:
| Quote: | How would i template the object of my class BSTree, which is defined
outside my class.
|
English please. :-)
Sorry, but I really don't understand the context of your question. Your
refer to "my class" and you refer to a template and there is one below
which seems to be what you're interested in but I don't get how they are
supposed to be related.
| Quote: | template <class xtype
class BSTree
{
class TNode
{
TNode *right;
TNode *left;
public:
char *info;
friend class BSTree
};
Tnode *root
};
static BSTree mark
(eg. static BSTree mark) so that it has access to my functions in main.?
|
What are you trying to do ?
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|