A file scope vector that with a length that is determined by another file scope variable is classified as a member function in VA Outline.
#include <vector>
using namespace std;
static const uint32 fileScopeVariable(1);
static const uint32 SIZE_VECTOR = 8;
static vector< double > FILE_SCOPE_VECTOR1( 8 );
static vector< double > FILE_SCOPE_VECTOR2( SIZE_VECTOR );
MyClass::MyClass( void )
{
}
