Resync.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Source / CPack / cmCPackCygwinBinaryGenerator.h
blob8d1f0db9771b37ee19c2bafbb9729903c7158043
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmCPackCygwinBinaryGenerator.h,v $
5 Language: C++
6 Date: $Date: 2007/10/31 12:50:17 $
7 Version: $Revision: 1.3 $
9 Copyright (c) 2002 Kitware, Inc. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
18 #ifndef cmCPackCygwinBinaryGenerator_h
19 #define cmCPackCygwinBinaryGenerator_h
21 #include "cmCPackTarBZip2Generator.h"
23 /** \class cmCPackCygwinBinaryGenerator
24 * \brief A generator for TarBZip2 files
26 class cmCPackCygwinBinaryGenerator : public cmCPackTarBZip2Generator
28 public:
29 cmCPackTypeMacro(cmCPackCygwinBinaryGenerator, cmCPackTarBZip2Generator);
31 /**
32 * Construct generator
34 cmCPackCygwinBinaryGenerator();
35 virtual ~cmCPackCygwinBinaryGenerator();
36 protected:
37 virtual int InitializeInternal();
38 int CompressFiles(const char* outFileName, const char* toplevel,
39 const std::vector<std::string>& files);
40 virtual const char* GetOutputExtension();
41 std::string OutputExtension;
44 #endif