1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmDependsJava.h,v $
6 Date: $Date: 2005-10-12 17:52:29 $
7 Version: $Revision: 1.5 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. 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 =========================================================================*/
17 #ifndef cmDependsJava_h
18 #define cmDependsJava_h
20 #include "cmDepends.h"
22 /** \class cmDependsJava
23 * \brief Dependency scanner for Java class files.
25 class cmDependsJava
: public cmDepends
28 /** Checking instances need to know the build directory name and the
29 relative path from the build directory to the target file. */
32 /** Virtual destructor to cleanup subclasses properly. */
33 virtual ~cmDependsJava();
36 // Implement writing/checking methods required by superclass.
37 virtual bool WriteDependencies(const char *src
, const char *file
,
38 std::ostream
& makeDepends
, std::ostream
& internalDepends
);
39 virtual bool CheckDependencies(std::istream
& internalDepends
);
42 cmDependsJava(cmDependsJava
const&); // Purposely not implemented.
43 void operator=(cmDependsJava
const&); // Purposely not implemented.