Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98bc791 commit 385f6faCopy full SHA for 385f6fa
blobstamper/galley.h
@@ -59,6 +59,16 @@ class GalleyVectorStr: public GalleyVectorBase
59
std::vector<std::string> ExtractStrVector(Blob &blob);
60
};
61
62
+template<class T> class GalleyVectorStrStampBase: public GalleyVectorStr, public StampBaseStr
63
+{
64
+ protected:
65
+ T * item_stamp_p;
66
+ public:
67
+ GalleyVectorStrStampBase(): GalleyVectorStr(*(item_stamp_p = new T())) {};
68
+ ~GalleyVectorStrStampBase() {delete item_stamp_p;};
69
+};
70
+
71
72
class GalleyVectorBin: public GalleyVectorBase
73
{
74
StampBaseBin & b_stamp;
0 commit comments