Advertisement
zoltanb

Untitled

May 8th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. class SerDes {
  2.  public:
  3.   SerDes();
  4.   virtual ~SerDes();
  5.   virtual AuthenticationRequest Deserialize(void*) = 0;
  6.   virtual void* Serialize(AuthenticationResponse*) = 0;
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement