diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-04-11 18:59:02 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-04-11 18:59:02 (GMT) |
commit | 865ec96644ae08e66b9a4a15bd7cddde46d2e2b0 (patch) | |
tree | 3f1a58bd35606684aa8501c2e629f24855e37421 /Source/cmCableData.h | |
parent | 7b47a5d2ef1bb303b25a051d588a54616e44cbe9 (diff) | |
download | CMake-865ec96644ae08e66b9a4a15bd7cddde46d2e2b0.zip CMake-865ec96644ae08e66b9a4a15bd7cddde46d2e2b0.tar.gz CMake-865ec96644ae08e66b9a4a15bd7cddde46d2e2b0.tar.bz2 |
major changes to support multiple libraries and source lists
Diffstat (limited to 'Source/cmCableData.h')
-rw-r--r-- | Source/cmCableData.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Source/cmCableData.h b/Source/cmCableData.h index 84223b4..a12925b 100644 --- a/Source/cmCableData.h +++ b/Source/cmCableData.h @@ -71,8 +71,7 @@ public: void BeginPackage(cmCablePackageCommand*); void EndPackage(); - void SetPackageClassIndex(int index) { m_PackageClassIndex = index; } - int GetPackageClassIndex() const { return m_PackageClassIndex; } + cmCablePackageCommand *GetCurrentPackage() { return m_Package; } private: /** @@ -110,13 +109,6 @@ private: * This must be the level when the package is ended. */ unsigned int m_PackageNamespaceDepth; - - /** - * During the final pass, this maintains the index into a cmMakefile's - * m_Classes corresponding to the cmClassFile for this package's generated - * file. - */ - int m_PackageClassIndex; }; std::ostream& operator<<(std::ostream&, const cmCableData::Indentation&); |