Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Source / cmDependsJava.h
blob57aa8320127625dc922024ee43437900c3558bb4
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmDependsJava.h,v $
5 Language: C++
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
27 public:
28 /** Checking instances need to know the build directory name and the
29 relative path from the build directory to the target file. */
30 cmDependsJava();
32 /** Virtual destructor to cleanup subclasses properly. */
33 virtual ~cmDependsJava();
35 protected:
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);
41 private:
42 cmDependsJava(cmDependsJava const&); // Purposely not implemented.
43 void operator=(cmDependsJava const&); // Purposely not implemented.
46 #endif