1497 |
// Use boost and the |
// Use boost and the |
1498 |
// typedef boost::shared_ptr<ValueType> ValuePointer; |
// typedef boost::shared_ptr<ValueType> ValuePointer; |
1499 |
// kind of pattern. |
// kind of pattern. |
1500 |
// Oh, & see if you can bring yourself to not using "using" all |
// Oh, "using namepace std" is addictive & |
1501 |
// over the place. |
// bad for your long term health. |
|
// If you have foo::bar::har::get_my_car::... driving you crazy, |
|
|
// try using namespace ABetterNameSpace = foo::bar::har::... |
|
|
// you lazy sod. And, stop "using std", |
|
|
// its addictive & bad for your long term health. |
|
1502 |
// Use protection, and get used to "std::". |
// Use protection, and get used to "std::". |
1503 |
// Author: guess.... |
// If you have foo::bar::har::get_my_car::... driving you crazy, |
1504 |
|
// try using "namespace MySpace = foo::bar::har::..." |
1505 |
|
// and then use MySpace:: |
1506 |
// |
// |
1507 |
ValueType* m_data; |
ValueType* m_data; |
1508 |
|
|