all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
47
Task/Singleton/Ada/singleton-4.ada
Normal file
47
Task/Singleton/Ada/singleton-4.ada
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
package body Protected_Singleton is
|
||||
|
||||
--------------
|
||||
-- Set_Data --
|
||||
--------------
|
||||
|
||||
procedure Set_Data (Value : Integer) is
|
||||
begin
|
||||
Instance.Set(Value);
|
||||
end Set_Data;
|
||||
|
||||
--------------
|
||||
-- Get_Data --
|
||||
--------------
|
||||
|
||||
function Get_Data return Integer is
|
||||
begin
|
||||
return Instance.Get;
|
||||
end Get_Data;
|
||||
|
||||
--------------
|
||||
-- Instance --
|
||||
--------------
|
||||
|
||||
protected body Instance is
|
||||
|
||||
---------
|
||||
-- Set --
|
||||
---------
|
||||
|
||||
procedure Set (Value : Integer) is
|
||||
begin
|
||||
Data := Value;
|
||||
end Set;
|
||||
|
||||
---------
|
||||
-- Get --
|
||||
---------
|
||||
|
||||
function Get return Integer is
|
||||
begin
|
||||
return Data;
|
||||
end Get;
|
||||
|
||||
end Instance;
|
||||
|
||||
end Protected_Singleton;
|
||||
Loading…
Add table
Add a link
Reference in a new issue