Hier sehen Sie eine Idee für ein Programm mit künstlicher Intelligenz, das Benutzer-Schnittstellen gestalten könnte. Nach längerer Überlegung stellt sich jedoch die wissenschaftliche Frage, ob eine eigene Programmiersprache für die Produktion besser als C++ wäre.

**********************************************

Copyright © 2006 - 2016 by Art Bagua | webmaster@artbagua.de

* This namespace is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

* This namespace is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

* You should have received a copy of the GNU General Public License along with this namespace; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA

/**INTERFACE NAMESPACE*/

using namespace std;

//...

namespace UINAI

{

//class ...(forwarding)

class Interface()

{

public:

Interface();

Interface(object*);

~Interface();

};

class HumanInterface()

{

public:

HumanInterface();

HumanInterface(object* , server*);

~HumanInterface();

};

class UserInterface()

{

public:

UserInterface();

UserInterface(object* , server* , out*);

~UserInterface();

};

#

| #1 |

| #2 |

| #3 |