~ubuntu-branches/debian/stretch/adabrowse/stretch

« back to all changes in this revision

Viewing changes to ad-projects-impl_no.ads

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Brenta
  • Date: 2004-02-14 13:22:40 UTC
  • Revision ID: james.westby@ubuntu.com-20040214132240-cqumhiq1677pkvzo
Tags: upstream-4.0.2
ImportĀ upstreamĀ versionĀ 4.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-------------------------------------------------------------------------------
 
2
--
 
3
--  This file is part of AdaBrowse.
 
4
--
 
5
-- <STRONG>Copyright (c) 2002 by Thomas Wolf.</STRONG>
 
6
-- <BLOCKQUOTE>
 
7
--    AdaBrowse is free software; you can redistribute it and/or modify it
 
8
--    under the terms of the  GNU General Public License as published by the
 
9
--    Free Software  Foundation; either version 2, or (at your option) any
 
10
--    later version. AdaBrowse is distributed in the hope that it will be
 
11
--    useful, but <EM>without any warranty</EM>; without even the implied
 
12
--    warranty of <EM>merchantability or fitness for a particular purpose.</EM>
 
13
--    See the GNU General Public License for  more details. You should have
 
14
--    received a copy of the GNU General Public License with this distribution,
 
15
--    see file "<A HREF="GPL.txt">GPL.txt</A>". If not, write to the Free
 
16
--    Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
 
17
--    USA.
 
18
-- </BLOCKQUOTE>
 
19
--
 
20
-- <DL><DT><STRONG>
 
21
-- Author:</STRONG><DD>
 
22
--   Thomas Wolf  (TW)
 
23
--   <ADDRESS><A HREF="mailto:twolf@acm.org">twolf@acm.org</A></ADDRESS></DL>
 
24
--
 
25
-- <DL><DT><STRONG>
 
26
-- Purpose:</STRONG><DD>
 
27
--   A dummy project manager implementation for a non-existing project
 
28
--   manager.</DL>
 
29
--
 
30
-- <!--
 
31
-- Revision History
 
32
--
 
33
--   07-JUN-2003   TW  Initial version
 
34
-- -->
 
35
-------------------------------------------------------------------------------
 
36
 
 
37
pragma License (GPL);
 
38
 
 
39
with Ada.Text_IO;
 
40
 
 
41
private package AD.Projects.Impl_No is
 
42
 
 
43
   procedure Handle_Project_File
 
44
     (Name : in String);
 
45
   --  Raises @Project_Error@ with a descriptive error message.
 
46
 
 
47
   procedure Get_Source_File_List
 
48
     (File : in out Ada.Text_IO.File_Type);
 
49
   --  A no-op.
 
50
 
 
51
   function Get_Tree_Directory
 
52
     return String;
 
53
   --  Returns an empty string.
 
54
 
 
55
   function Get_Output_Directory
 
56
     return String;
 
57
   --  Returns an empty string.
 
58
 
 
59
   function Get_Project_File_Name
 
60
     return String;
 
61
   --  Returns an empty string.
 
62
 
 
63
   function Project_Version
 
64
     return String;
 
65
   --  Returns an empty string.
 
66
 
 
67
   procedure Reset
 
68
     (On_Error : in Boolean);
 
69
 
 
70
   procedure Define_Variable
 
71
     (Name  : in String;
 
72
      Value : in String);
 
73
 
 
74
   procedure Initialize;
 
75
 
 
76
end AD.Projects.Impl_No;