#Include in a private declaration


2003-11-27 12:58:32 AM
cppbuilder100
I've tried to include an ".h" file in a private declaration of a form
to "extend" this form definition :
class TForm1 : public TForm
{
__published: // IDE-managed Components
...
private:
#include "Extensions.h"
}
and then
in the "Extensions.h" file :
private:
static void TForm1:Procedure1()
.....
but when I compile I've got "Unresolved external" messages on all
procedures from this file.
Any ideas?