It's saying, if you have an access level of below 80, you will have it removed when you zone. You can change it, but personally I like it. Although I think this little setting -should- be read from addon.ini or the variables table, personally.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|