Hi,
Before I go meddling with the C/C++ Group parsing rules I thought I'd ask if anyone else has already updated it to support class member functions (in the header file)? Out the box it only supports globally scoped functions and class member functions that are defined in the .cpp file e.g.
The indents are 1 tab.
Thanks - Brad
Before I go meddling with the C/C++ Group parsing rules I thought I'd ask if anyone else has already updated it to support class member functions (in the header file)? Out the box it only supports globally scoped functions and class member functions that are defined in the .cpp file e.g.
Code: Select all
// FILE : B.h
class B
{
public:
void Test(){} // not in Function List
};
namespace blah
{
void test2(){} // not in Function List
}
void test3(){} // In Function List
#endif
// File B.cpp
void B::op1() // In Function List
{
}
Thanks - Brad