--------------------------------------------------------------------------------------------------------------------------------------------------------------
-- Gnostic is Ada Generic Neural Object System Engineering.                                                                                                --
-- Gnostic (C) Copyright 2016 Manuel De Girardi.                                                                                                           --
--------------------------------------------------------------------------------------------------------------------------------------------------------------
  
--------------------------------------------------------------------------------------------------------------------------------------------------------------
-- Date        := 2016-11-27 19:33:08 ; 
-- Description : Ada Generic Neural Object System Engineering.                                                                                              --
-- Version     := 2016.12.1a ; 
-- Authors     : Manuel De Girardi.                                                                                                                         --
--------------------------------------------------------------------------------------------------------------------------------------------------------------
with Gnos.Abstracts;
use Gnos.Abstracts;
package Gnos.Classified is

	type Project_Class is new Abstract_Project_Type with
		record
			Authors : Wide_String_Access;
			Copyright : Wide_String_Access;
		end record;
	
	type Data_Class is new Abstract_DAta_Type with null record;

end Gnos.Classified;