Files
PolyORB/Examples/DSMStorage/vector.adb
Laurent Pautet 84155a2eea Add missing file in DSMStorage example
Subversion-branch: /importfromcvs/trunk
Subversion-revision: 47855
2002-10-21 21:15:43 +00:00

16 lines
306 B
Ada

package body Vector is
protected body Content is
procedure Increment (N : Natural; I : Natural) is
begin
X (N) := X (N) + I;
end Increment;
function Value (N : Natural) return Natural is
begin
return X (N);
end Value;
end Content;
end Vector;