corda/experimental/cpp-serializer/include/amqp/AMQPDescribed.h
Katelyn Baker eb8eaba1d7 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.
2019-08-19 20:13:04 +01:00

16 lines
291 B
C++

#pragma once
/******************************************************************************/
namespace amqp {
class AMQPDescribed {
public :
virtual ~AMQPDescribed() { }
};
}
/******************************************************************************/