Add initial prototype.
This commit is contained in:
19
2-low/collada/source/collada-library.adb
Normal file
19
2-low/collada/source/collada-library.adb
Normal file
@@ -0,0 +1,19 @@
|
||||
package body collada.Library
|
||||
is
|
||||
|
||||
function find_in (Self : Inputs; the_Semantic : in library.Semantic) return Input_t
|
||||
is
|
||||
begin
|
||||
for i in Self'Range
|
||||
loop
|
||||
if Self (i).Semantic = the_Semantic
|
||||
then
|
||||
return Self (i);
|
||||
end if;
|
||||
end loop;
|
||||
|
||||
return null_Input;
|
||||
end find_in;
|
||||
|
||||
|
||||
end collada.Library;
|
||||
Reference in New Issue
Block a user