NOTICK - Fix namespace allocation for C++ Serialiser

Now things are working for the most part, move the readers into their
own internal namespace. Also start creating an actual separation of the
interface and the implementation with some Interface classes at the
non internal level.
This commit is contained in:
Katelyn Baker
2019-08-19 20:10:57 +01:00
parent 101d978050
commit eb8eaba1d7
27 changed files with 527 additions and 365 deletions

View File

@ -0,0 +1,15 @@
#pragma once
/******************************************************************************/
namespace amqp {
class AMQPDescribed {
public :
virtual ~AMQPDescribed() { }
};
}
/******************************************************************************/