MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / raw_vector

Class raw_vector

src/apvt.h:66–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64********************************************************************/
65template<class T>
66class raw_vector : public const_raw_vector<T>
67{
68public:
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/********************************************************************

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected