2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-03-01 20:21:34 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-03-01 20:21:34 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-03-01 20:21:34 +03:00
|
|
|
#ifndef cmDependsJava_h
|
|
|
|
#define cmDependsJava_h
|
|
|
|
|
|
|
|
#include "cmDepends.h"
|
|
|
|
|
|
|
|
/** \class cmDependsJava
|
|
|
|
* \brief Dependency scanner for Java class files.
|
|
|
|
*/
|
|
|
|
class cmDependsJava: public cmDepends
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Checking instances need to know the build directory name and the
|
|
|
|
relative path from the build directory to the target file. */
|
2005-05-11 21:16:45 +04:00
|
|
|
cmDependsJava();
|
2005-03-01 20:21:34 +03:00
|
|
|
|
|
|
|
/** Virtual destructor to cleanup subclasses properly. */
|
|
|
|
virtual ~cmDependsJava();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Implement writing/checking methods required by superclass.
|
2012-09-30 19:53:01 +04:00
|
|
|
virtual bool WriteDependencies(
|
|
|
|
const std::set<std::string>& sources, const std::string& file,
|
2005-10-12 21:52:29 +04:00
|
|
|
std::ostream& makeDepends, std::ostream& internalDepends);
|
2009-09-23 22:02:05 +04:00
|
|
|
virtual bool CheckDependencies(std::istream& internalDepends,
|
2012-08-20 23:37:26 +04:00
|
|
|
const char* internalDependsFileName,
|
|
|
|
std::map<std::string, DependencyVector>& validDeps);
|
2005-03-01 20:21:34 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
cmDependsJava(cmDependsJava const&); // Purposely not implemented.
|
|
|
|
void operator=(cmDependsJava const&); // Purposely not implemented.
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|