Yes: BFL_Test::PublicMethod( ... )
.
All functions in a function library should be static, so you have to call them that way (with the ::
scope operator instead of with ->
using an instance of the class).
Yes: BFL_Test::PublicMethod( ... )
.
All functions in a function library should be static, so you have to call them that way (with the ::
scope operator instead of with ->
using an instance of the class).