I have a data like BigArr, arr, ... declared in header:
class TableView:public QWidget
{
Q_OBJECT
public:TableView (QWidget * parent = 0);
std::vector < TXdata > BigArr;
std::vector < float > arr;
std::vector < float > arr2;
std::vector < int > arrlocKtab;
std::vector < int > arrlocKrow;
In source file I have some functions I copy/pasted from somewhere else, like:
static void
multiply (float q[4], float value)
{
q[0] *= value;
q[1] *= value;
q[2] *= value;
q[3] *= value;
}
and some other functions I made, like:
void
TableView::ShowContextMenu (const QPoint & pos) // this is a slot
{
How do I get declarations from header file to work inside copy/pasted functions. Like:
static void
multiply (float q[4], float value)
{
arr[0]= something...
I got some bad results from renaming c/p functions to void TableView::function and adding them to function list in the header file. Probably something to do with the static void &static inline void... Ty