|
아래와 같이 하니, 에러나는군요~
class TForm1 : public TForm
{
__published: // IDE-managed Components
TButton *Button1;
TImage *Image1;
TShape *Shape1;
TShape *Shape2;
TShape *Shape3;
TBitBtn *BitBtn1;
void __fastcall Button1Click(TObject *Sender);
void __fastcall BitBtn1Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TForm1(TComponent* Owner);
void __fastcall Bmp2Raw(WideString Bmp_name, int BW, int BH, WideString Raw_name);
TShape *Sh[3]={Shape1, Shape2, Shape3}; // 여기서 에러
};
|