Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Source / cmDependsJava.cxx
blob0f753eb09206a113fda4d57c5bd495e6a5e7b79e
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmDependsJava.cxx,v $
5 Language: C++
6 Date: $Date: 2005/10/12 17:52:29 $
7 Version: $Revision: 1.7 $
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 #include "cmDependsJava.h"
19 #include "cmDependsJavaParserHelper.h"
20 #include "cmSystemTools.h"
22 //----------------------------------------------------------------------------
23 cmDependsJava::cmDependsJava()
27 //----------------------------------------------------------------------------
28 cmDependsJava::~cmDependsJava()
32 //----------------------------------------------------------------------------
33 bool cmDependsJava::WriteDependencies(const char *src, const char *,
34 std::ostream&, std::ostream&)
36 // Make sure this is a scanning instance.
37 if(!src || src[0] == '\0')
39 cmSystemTools::Error("Cannot scan dependencies without an source file.");
40 return false;
43 return true;
46 bool cmDependsJava::CheckDependencies(std::istream&)
48 return true;