File: sdefault.adb

package info (click to toggle)
adabrowse 4.0.3-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,364 kB
  • sloc: ada: 29,770; makefile: 137; ansic: 4
file content (34 lines) | stat: -rw-r--r-- 945 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--  The GNAT sources do not contain this file; it is generated
--  automatically when GNAT is configured.
--
--  I don't want user's of AdaBrowse to have to actually build
--  GNAT to get project file support; it is sufficient that
--  they have the GNAT sources. Therefore I provide this dummy
--  implementation. It works fine, because AdaBrowse doesn't
--  need these default locations.

package body Sdefault is

   S1 : constant String := "";

   function Include_Dir_Default_Name return String_Ptr is
   begin
      return new String'(S1);
   end Include_Dir_Default_Name;

   function Object_Dir_Default_Name return String_Ptr is
   begin
      return new String'(S1);
   end Object_Dir_Default_Name;

   function Target_Name return String_Ptr is
   begin
      return new String'(S1);
   end Target_Name;

   function Search_Dir_Prefix return String_Ptr is
   begin
      return new String'(S1);
   end Search_Dir_Prefix;

end Sdefault;