diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-06 17:48:13 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-06 17:48:13 (GMT) |
commit | 38a164d254a557bb46134c049bd809a487e325b4 (patch) | |
tree | 00e6972d5d90f61cb98b20e2f218fc3ebf2d9c51 /Source/cmDSPWriter.h | |
parent | b31fcf1cacf720bcd02ee9ea657c2a26be54f064 (diff) | |
download | CMake-38a164d254a557bb46134c049bd809a487e325b4.zip CMake-38a164d254a557bb46134c049bd809a487e325b4.tar.gz CMake-38a164d254a557bb46134c049bd809a487e325b4.tar.bz2 |
ENH: rename DSWMakefile and DSPMakefile to DSWWriter and DSPWriter
Diffstat (limited to 'Source/cmDSPWriter.h')
-rw-r--r-- | Source/cmDSPWriter.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/cmDSPWriter.h b/Source/cmDSPWriter.h index 9520e0a..7190785 100644 --- a/Source/cmDSPWriter.h +++ b/Source/cmDSPWriter.h @@ -38,24 +38,24 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. =========================================================================*/ -#ifndef cmDSPMakefile_h -#define cmDSPMakefile_h +#ifndef cmDSPWriter_h +#define cmDSPWriter_h #include "cmStandardIncludes.h" #include "cmMakefile.h" -/** \class cmDSPMakefile +/** \class cmDSPWriter * \brief Generate a Microsoft DSP project file. * - * cmDSPMakefile generates a Microsoft DSP project file. + * cmDSPWriter generates a Microsoft DSP project file. * See the *.dsptemplate files for information on the templates * used for making the project files. */ -class cmDSPMakefile +class cmDSPWriter { public: - cmDSPMakefile(cmMakefile*); - ~cmDSPMakefile(); + cmDSPWriter(cmMakefile*); + ~cmDSPWriter(); void OutputDSPFile(); enum BuildType {STATIC_LIBRARY, DLL, EXECUTABLE, WIN32_EXECUTABLE, UTILITY}; |