Skip to content

Commit

Permalink
Merge pull request #189 from Sunderlandkyl/generic_codec_object
Browse files Browse the repository at this point in the history
Make GenericEncoder and GenericDecoder inherit Object so that they can be stored in SmartPointer
  • Loading branch information
adamrankin authored Jul 12, 2018
2 parents 4c39d0f + c9ba17d commit aa1ea65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/VideoStreaming/igtlCodecCommonClasses.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class IGTLCommon_EXPORT ReadConfigFile {
unsigned int lineNums;
};

class IGTLCommon_EXPORT GenericEncoder
class IGTLCommon_EXPORT GenericEncoder : public Object
{
public:
GenericEncoder(){
Expand Down Expand Up @@ -193,7 +193,7 @@ class IGTLCommon_EXPORT GenericEncoder

};

class IGTLCommon_EXPORT GenericDecoder
class IGTLCommon_EXPORT GenericDecoder : public Object
{
public:
GenericDecoder(){deviceName = ""; isGrayImage = false;};
Expand Down

0 comments on commit aa1ea65

Please sign in to comment.