In any other .cpp file that my program uses I want to be able to call the glob_function() via ampla::glob_function() but the compiler insists me to do it this way(and it works OK!):
1 2
ampla test;
test.glob_function();
But I want to be able to call it at once, what am I doing wrong?