mirror of
https://github.com/corda/corda.git
synced 2024-12-25 23:51:10 +00:00
eb8eaba1d7
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.
16 lines
291 B
C++
16 lines
291 B
C++
#pragma once
|
|
|
|
/******************************************************************************/
|
|
|
|
namespace amqp {
|
|
|
|
class AMQPDescribed {
|
|
public :
|
|
virtual ~AMQPDescribed() { }
|
|
};
|
|
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|