diff options
author | Brad King <brad.king@kitware.com> | 2002-08-15 19:01:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-08-15 19:01:42 (GMT) |
commit | c1ad03bedbd71b5f3fef4b6553d1172c8dc48cb5 (patch) | |
tree | 41a00e8a4066a3789b04d2177666add44f5895a4 /Source/cmVTKMakeInstantiatorCommand.h | |
parent | 3200bfbf4cf65ebed19686fe7a8ef85457fbd4c9 (diff) | |
download | CMake-c1ad03bedbd71b5f3fef4b6553d1172c8dc48cb5.zip CMake-c1ad03bedbd71b5f3fef4b6553d1172c8dc48cb5.tar.gz CMake-c1ad03bedbd71b5f3fef4b6553d1172c8dc48cb5.tar.bz2 |
BUG: Added backward-compatability. The old instantiator style will be used unless the argument USE_INSTANTIATOR_NEW is given to tell the command to make use of the instantiator new functions exported from each class's implementation file.
Diffstat (limited to 'Source/cmVTKMakeInstantiatorCommand.h')
-rw-r--r-- | Source/cmVTKMakeInstantiatorCommand.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmVTKMakeInstantiatorCommand.h b/Source/cmVTKMakeInstantiatorCommand.h index b2678d0..e2980e8 100644 --- a/Source/cmVTKMakeInstantiatorCommand.h +++ b/Source/cmVTKMakeInstantiatorCommand.h @@ -85,6 +85,12 @@ protected: void GenerateHeaderFile(std::ostream&); void GenerateImplementationFile(std::ostream&); + + void OldGenerateHeaderFile(std::ostream&); + void OldGenerateImplementationFile(std::ostream&); + std::string OldGenerateCreationFileName(unsigned int group); + void OldGenerateCreationFile(std::ostream&, unsigned int groupStart, + unsigned int groupSize); }; |