added function cVFi
This commit is contained in:
parent
60bca978f7
commit
e5ed268b6a
|
@ -534,6 +534,7 @@ public:
|
||||||
typename T::FacePointer &VFp(const int j) { assert(j>=0 && j<3); return _vfp[j]; }
|
typename T::FacePointer &VFp(const int j) { assert(j>=0 && j<3); return _vfp[j]; }
|
||||||
typename T::FacePointer cVFp(const int j) const { assert(j>=0 && j<3); return _vfp[j]; }
|
typename T::FacePointer cVFp(const int j) const { assert(j>=0 && j<3); return _vfp[j]; }
|
||||||
char &VFi(const int j) {return _vfi[j]; }
|
char &VFi(const int j) {return _vfi[j]; }
|
||||||
|
char cVFi(const int j)const {return _vfi[j]; }
|
||||||
template <class RightValueType>
|
template <class RightValueType>
|
||||||
void ImportData(const RightValueType & rightF){T::ImportData(rightF);}
|
void ImportData(const RightValueType & rightF){T::ImportData(rightF);}
|
||||||
inline void Alloc(const int & ns){T::Alloc(ns);}
|
inline void Alloc(const int & ns){T::Alloc(ns);}
|
||||||
|
|
Loading…
Reference in New Issue