ok can i have a class inside of another class?
1.h file
also does the command extern work in Class's?
1.h file
Code:
#pragma once
// CDRPDlg dialog
class CDRPDlg : public CDialog
{
protected: //....
public:
class Filter
{
float *fil_data;
static float dc1d, dc2d;
int dim[2];
public:
Filter(int,float,int);
~Filter();
};
//....
};
also does the command extern work in Class's?