| 64 | ********************************************************************/ |
| 65 | template<class T> |
| 66 | class raw_vector : public const_raw_vector<T> |
| 67 | { |
| 68 | public: |
| 69 | raw_vector(T *Data, int Length, int Step):const_raw_vector<T>(Data, Length, Step){}; |
| 70 | |
| 71 | T* GetData() |
| 72 | { return const_raw_vector<T>::pData; }; |
| 73 | }; |
| 74 | |
| 75 | |
| 76 | /******************************************************************** |
nothing calls this directly
no outgoing calls
no test coverage detected