Added explicit copy constructors and made other tweaks to avoid

compiler complaints.
This commit is contained in:
Rod Smith
2018-07-05 16:50:13 -04:00
parent 8dab6f22ee
commit 9ae60195b9
9 changed files with 150 additions and 52 deletions

1
gpt.h
View File

@@ -92,6 +92,7 @@ protected:
public:
// Basic necessary functions....
GPTData(void);
GPTData(const GPTData &);
GPTData(string deviceFilename);
virtual ~GPTData(void);
GPTData & operator=(const GPTData & orig);