Skip to content

Commit e53d8ed

Browse files
Some renamings
1 parent 2237068 commit e53d8ed

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

blobstamper/galley.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ class GalleyVector : public GalleyBase
3838

3939
template<class T> class GalleyVectorV: public GalleyVector
4040
{
41-
StampBaseT<T>& v_stamp;
41+
StampBaseV<T>& v_stamp;
4242
public:
43-
GalleyVectorV(StampBaseT<T> & stamp_arg): GalleyVector(stamp_arg), v_stamp(stamp_arg) {};
43+
GalleyVectorV(StampBaseV<T> & stamp_arg): GalleyVector(stamp_arg), v_stamp(stamp_arg) {};
4444
std::vector<T> ExtractValues(Blob &blob);
4545
};
4646

blobstamper/stamp.h

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,19 @@ class StampBase
2222
};
2323

2424

25-
template<class T> class StampBaseT: public virtual StampBase
25+
template<class T> class StampBaseV: public virtual StampBase
2626
{
2727
public:
2828
virtual T ExtractValue(Blob &blob) = 0;/* Shoud be defined by derived classes*/
2929
};
3030

31+
template<class T> class StampBasePV: public virtual StampBase
32+
{
33+
public:
34+
virtual T* ExtractValue(Blob &blob) = 0;/* Shoud be defined by derived classes*/
35+
};
36+
37+
3138
class StampFixed : public virtual StampBase
3239
{
3340
protected:

blobstamper/stamp_arithm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include "helpers.h"
66
#include "stamp.h"
77

8-
template<class T> class StampArithm: public StampFixed, public StampBaseT<T>
8+
template<class T> class StampArithm: public StampFixed, public StampBaseV<T>
99
{
1010
public:
1111
StampArithm() { size = sizeof(T);};

0 commit comments

Comments
 (0)