CMake/Source/cmSourceFile.h

125 lines
3.9 KiB
C
Raw Normal View History

/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
2002-01-21 23:30:43 +03:00
Copyright (c) 2002 Insight Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
2002-01-21 23:30:43 +03:00
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
2001-04-25 00:49:12 +04:00
#ifndef cmSourceFile_h
#define cmSourceFile_h
2001-01-11 22:47:38 +03:00
#include "cmStandardIncludes.h"
2001-04-25 00:49:12 +04:00
/** \class cmSourceFile
2001-01-11 22:47:38 +03:00
* \brief Represent a class loaded from a makefile.
*
2001-04-25 00:49:12 +04:00
* cmSourceFile is represents a class loaded from
2001-01-11 22:47:38 +03:00
* a makefile.
*/
2001-04-25 00:49:12 +04:00
class cmSourceFile
{
2001-01-11 22:47:38 +03:00
public:
/**
* Construct instance as a concrete class with both a
* .h and .cxx file.
*/
2001-04-25 00:49:12 +04:00
cmSourceFile()
{
2001-01-11 22:47:38 +03:00
m_AbstractClass = false;
m_HeaderFileOnly = false;
2001-02-28 00:48:55 +03:00
m_WrapExclude = false;
}
/**
* Set the name of the file, given the directory the file should be
* in. The various extensions provided are tried on the name
* (e.g., cxx, cpp) in the directory to find the actual file.
*/
void SetName(const char* name, const char* dir,
const std::vector<std::string>& sourceExts,
const std::vector<std::string>& headerExts);
2001-01-11 22:47:38 +03:00
/**
* Set the name of the file, given the directory the file should be in. IN
* this version the extension is provided in the call. This is useful for
* generated files that do not exist prior to the build.
*/
void SetName(const char* name, const char* dir, const char *ext,
bool headerFileOnly);
/**
2001-01-11 22:47:38 +03:00
* Print the structure to std::cout.
*/
void Print() const;
2001-01-11 22:47:38 +03:00
/**
* Indicate whether the class is abstract (non-instantiable).
*/
2001-04-25 00:49:12 +04:00
bool IsAnAbstractClass() const { return m_AbstractClass; }
bool GetIsAnAbstractClass() const { return m_AbstractClass; }
void SetIsAnAbstractClass(bool f) { m_AbstractClass = f; }
2001-01-11 22:47:38 +03:00
2001-02-28 00:48:55 +03:00
/**
* Indicate whether the class should not be wrapped
*/
2001-04-25 00:49:12 +04:00
bool GetWrapExclude() const { return m_WrapExclude; }
void SetWrapExclude(bool f) { m_WrapExclude = f; }
2001-02-28 00:48:55 +03:00
2001-01-11 22:47:38 +03:00
/**
* Indicate whether this class is defined with only the header file.
*/
2001-04-25 00:49:12 +04:00
bool IsAHeaderFileOnly() const { return m_HeaderFileOnly; }
bool GetIsAHeaderFileOnly() const { return m_HeaderFileOnly; }
void SetIsAHeaderFileOnly(bool f) { m_HeaderFileOnly = f; }
2001-01-11 22:47:38 +03:00
/**
* The full path to the file.
*/
2002-06-28 18:18:28 +04:00
const std::string &GetFullPath() const {return m_FullPath;}
2001-04-25 00:49:12 +04:00
void SetFullPath(const char *name) {m_FullPath = name;}
2001-01-11 22:47:38 +03:00
/**
* The file name associated with stripped off directory and extension.
* (In most cases this is the name of the class.)
*/
2002-06-28 16:57:25 +04:00
const std::string &GetSourceName() const {return m_SourceName;}
2001-04-25 00:49:12 +04:00
void SetSourceName(const char *name) {m_SourceName = name;}
2001-01-11 22:47:38 +03:00
/**
* The file name associated with stripped off directory and extension.
* (In most cases this is the name of the class.)
*/
2002-06-28 18:18:28 +04:00
const std::string &GetSourceExtension() const {return m_SourceExtension;}
2001-04-25 00:49:12 +04:00
void SetSourceExtension(const char *name) {m_SourceExtension = name;}
2001-01-11 22:47:38 +03:00
/**
2001-04-25 00:49:12 +04:00
* Return the vector that holds the list of dependencies
2001-01-11 22:47:38 +03:00
*/
2001-04-25 00:49:12 +04:00
const std::vector<std::string> &GetDepends() const {return m_Depends;}
std::vector<std::string> &GetDepends() {return m_Depends;}
2002-03-04 22:14:41 +03:00
///! Set/Get per file compiler flags
void SetCompileFlags(const char* f) { m_CompileFlags = f;}
const char* GetCompileFlags() const { return m_CompileFlags.size() ? m_CompileFlags.c_str(): 0; }
2001-04-25 00:49:12 +04:00
private:
bool m_AbstractClass;
bool m_WrapExclude;
bool m_HeaderFileOnly;
2002-03-04 22:14:41 +03:00
std::string m_CompileFlags;
2001-04-25 00:49:12 +04:00
std::string m_FullPath;
std::string m_SourceName;
std::string m_SourceExtension;
std::vector<std::string> m_Depends;
};
#endif