[Gcblue-commits] gcb_wx/include/ai Brain.h,1.1,1.2 Task.h,1.1,1.2
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-02-08 12:58:30
|
Update of /cvsroot/gcblue/gcb_wx/include/ai In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29381/include/ai Modified Files: Brain.h Task.h Log Message: Index: Brain.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/ai/Brain.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Brain.h 4 Feb 2005 18:50:46 -0000 1.1 --- Brain.h 8 Feb 2005 12:58:21 -0000 1.2 *************** *** 38,52 **** class Blackboard; - class Task - { - public: - std::map<std::string, std::string> textMemory; - std::map<int, double> numberMemory; - }; - - /** * Holds --- 38,45 ---- class Blackboard; + class Task; /** * Holds *************** *** 55,62 **** { public: ! Blackboard board; ///< for inter-task communication ! Brain(); ! ~Brain(); }; --- 48,57 ---- { public: ! Brain(); ! ~Brain(); ! private: ! Blackboard board; ///< for inter-task communication ! std::map<std::string, Task*> taskMap; }; Index: Task.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/ai/Task.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Task.h 4 Feb 2005 18:50:46 -0000 1.1 --- Task.h 8 Feb 2005 12:58:21 -0000 1.2 *************** *** 58,61 **** --- 58,62 ---- double priority; long id; + std::string scriptName; }; |