added some comments to illustrate the output of several path-related functions
authorRoyce Mitchell III <royce3@ev1.net>
Wed, 24 Aug 2005 03:18:13 +0000 (03:18 +0000)
committerRoyce Mitchell III <royce3@ev1.net>
Wed, 24 Aug 2005 03:18:13 +0000 (03:18 +0000)
svn path=/trunk/; revision=17500

reactos/tools/rbuild/rbuild.h

index 366c83e..2b3ca26 100644 (file)
@@ -245,11 +245,11 @@ public:
        bool HasImportLibrary () const;
        bool IsDLL () const;
        bool GenerateInOutputTree () const;
-       std::string GetTargetName () const;
-       std::string GetDependencyPath () const;
-       std::string GetBasePath () const;
-       std::string GetPath () const;
-       std::string GetPathWithPrefix ( const std::string& prefix ) const;
+       std::string GetTargetName () const; // "foo.exe"
+       std::string GetDependencyPath () const; // "path/foo.exe" or "path/libfoo.a"
+       std::string GetBasePath () const; // "path"
+       std::string GetPath () const; // "path/foo.exe"
+       std::string GetPathWithPrefix ( const std::string& prefix ) const; // "path/prefixfoo.exe"
        void GetTargets ( string_list& ) const;
        std::string GetInvocationTarget ( const int index ) const;
        bool HasFileWithExtension ( const IfableData&, const std::string& extension ) const;