with Directory_Tools;

package Training_Names is

    package Dir_Object renames Directory_Tools.Object;

    -- exceptions possible
    --
    Bad_Course_Name : exception;           -- from Validate_Course_Name
    Bad_Script_Text_File_Name : exception; -- from Script_Text_File_Pathname


    -- return pathnames: Course_Name & Release_Name arguments MUST BE VALID
    --
    --
    function Live_Job_File_Pathname return String;
    function Script_Text_File_Pathname (For_Course : in String) return String;
    --

end Training_Names;