From ecd4b2b1eea2624dc39eb56d7cfcbcc4e9ffb295 Mon Sep 17 00:00:00 2001 From: Luis Ibanez Date: Wed, 28 Nov 2001 14:44:10 -0500 Subject: [PATCH] ENH: The command was simplified to generate a source list of cxx from a source list of .fl GUI files. --- Source/cmFLTKWrapUICommand.h | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/Source/cmFLTKWrapUICommand.h b/Source/cmFLTKWrapUICommand.h index 8cc814251..ebba4faf7 100644 --- a/Source/cmFLTKWrapUICommand.h +++ b/Source/cmFLTKWrapUICommand.h @@ -53,13 +53,12 @@ public: virtual const char* GetFullDocumentation() { return - "FLTK_WRAP_UI(resultingLibraryName HeadersDestName SourcesDestName " - "SourceLists ...)\n" + "FLTK_WRAP_UI(resultingLibraryName SourceList)\n" "Produce .h and .cxx files for all the .fl and .fld file listed " - "in the SourceLists.\n" - "The .h files will be added to the library using the HeadersDestName\n" + "in the SourceList.\n" + "The .h files will be added to the library using the base name in\n" "source list.\n" - "The .cxx files will be added to the library using the SourcesDestName\n" + "The .cxx files will be added to the library using the base name in \n" "source list."; } @@ -67,15 +66,15 @@ private: /** * List of produced files. */ - std::vector m_WrapSourcesClasses; - std::vector m_WrapHeadersClasses; + std::vector m_GeneratedSourcesClasses; + std::vector m_GeneratedHeadersClasses; /** - * List of header files that pprovide the source for m_WrapClasses. + * List of Fluid files that provide the source + * generating .cxx and .h files */ std::vector m_WrapUserInterface; - std::string m_LibraryName; - std::string m_HeaderList; - std::string m_SourceList; + std::string m_GUISourceList; + std::string m_GeneratedSourceList; };