KWSys Nightly Date Stamp
[cmake.git] / Source / cmLocalVisualStudio10Generator.h
blob9c70efe09e8b2a8465beaa65be5e52c867367407
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmLocalVisualStudio10Generator.h,v $
5 Language: C++
6 Date: $Date: 2009-07-13 20:58:24 $
7 Version: $Revision: 1.2 $
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 cmLocalVisualStudio10Generator_h
18 #define cmLocalVisualStudio10Generator_h
20 #include "cmLocalVisualStudio7Generator.h"
23 /** \class cmLocalVisualStudio10Generator
24 * \brief Write Visual Studio 10 project files.
26 * cmLocalVisualStudio10Generator produces a Visual Studio 10 project
27 * file for each target in its directory.
29 class cmLocalVisualStudio10Generator : public cmLocalVisualStudio7Generator
31 public:
32 ///! Set cache only and recurse to false by default.
33 cmLocalVisualStudio10Generator();
35 virtual ~cmLocalVisualStudio10Generator();
38 /**
39 * Generate the makefile for this directory.
41 virtual void Generate();
42 virtual void ReadAndStoreExternalGUID(const char* name,
43 const char* path);
44 private:
46 #endif