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
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2005-03-01 20:21:34 +03:00
|
|
|
#include "cmDepends.h"
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <iosfwd>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
|
2005-03-01 20:21:34 +03:00
|
|
|
/** \class cmDependsJava
|
|
|
|
* \brief Dependency scanner for Java class files.
|
|
|
|
*/
|
2016-05-16 17:34:04 +03:00
|
|
|
class cmDependsJava : public cmDepends
|
2005-03-01 20:21:34 +03:00
|
|
|
{
|
|
|
|
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. */
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmDependsJava() CM_OVERRIDE;
|
2005-03-01 20:21:34 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// Implement writing/checking methods required by superclass.
|
2016-06-27 22:25:27 +03:00
|
|
|
bool WriteDependencies(const std::set<std::string>& sources,
|
|
|
|
const std::string& file, std::ostream& makeDepends,
|
|
|
|
std::ostream& internalDepends) CM_OVERRIDE;
|
|
|
|
bool CheckDependencies(
|
2016-05-16 17:34:04 +03:00
|
|
|
std::istream& internalDepends, const char* internalDependsFileName,
|
2016-06-27 22:25:27 +03:00
|
|
|
std::map<std::string, DependencyVector>& validDeps) CM_OVERRIDE;
|
2005-03-01 20:21:34 +03:00
|
|
|
|
|
|
|
private:
|
2016-05-16 17:34:04 +03:00
|
|
|
cmDependsJava(cmDependsJava const&); // Purposely not implemented.
|
2005-03-01 20:21:34 +03:00
|
|
|
void operator=(cmDependsJava const&); // Purposely not implemented.
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|