Skip to content
Snippets Groups Projects
Commit d15a9af2 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

added pointer typedef

parent 286fa9ff
No related branches found
No related tags found
2 merge requests!20new tag,!19new tag
This commit is part of merge request !20. Comments created here will be created in the context of that merge request.
...@@ -20,6 +20,11 @@ enum RawDataType : int ...@@ -20,6 +20,11 @@ enum RawDataType : int
ERROR = -1 ERROR = -1
}; };
// pointer typedefs
class ReceiverRawAbstract;
typedef std::shared_ptr<ReceiverRawAbstract> ReceiverRawAbstractPtr;
typedef std::shared_ptr<const ReceiverRawAbstract> ReceiverRawAbstractConstPtr;
class ReceiverRawAbstract class ReceiverRawAbstract
{ {
public: public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment