summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackTarCompressGenerator.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/CPack/cmCPackTarCompressGenerator.h')
-rw-r--r--Source/CPack/cmCPackTarCompressGenerator.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/Source/CPack/cmCPackTarCompressGenerator.h b/Source/CPack/cmCPackTarCompressGenerator.h
index 3c18056..7ff9a0a 100644
--- a/Source/CPack/cmCPackTarCompressGenerator.h
+++ b/Source/CPack/cmCPackTarCompressGenerator.h
@@ -18,12 +18,10 @@
/** \class cmCPackTarCompressGenerator
* \brief A generator for TarCompress files
*/
-class cmCPackTarCompressGenerator : public cmCPackTGZGenerator
+class cmCPackTarCompressGenerator : public cmCPackArchiveGenerator
{
public:
- friend class cmCPackTarCompressGeneratorForward;
- cmCPackTypeMacro(cmCPackTarCompressGenerator, cmCPackTGZGenerator);
-
+ cmCPackTypeMacro(cmCPackTarCompressGenerator, cmCPackArchiveGenerator);
/**
* Construct generator
*/
@@ -31,13 +29,7 @@ public:
virtual ~cmCPackTarCompressGenerator();
protected:
- virtual int InitializeInternal();
- int CompressFiles(const char* outFileName, const char* toplevel,
- const std::vector<std::string>& files);
virtual const char* GetOutputExtension() { return ".tar.Z"; }
-
- int RenameFile(const char* oldname, const char* newname);
- int GenerateHeader(std::ostream* os);
};
#endif