/* * AbfllnowShare.h * */ #ifndef GC_POSTSACRISECRET_H_ #define GC_POSTSACRISECRET_H_ #include "MaliciousRepSecret.h" namespace GC { class PostSacriBin; class PostSacriSecret : public MalRepSecretBase { typedef PostSacriSecret This; typedef MalRepSecretBase super; public: typedef PostSacriBin Protocol; PostSacriSecret() { } template PostSacriSecret(const T& other) : super(other) { } }; } #endif