// This file may be redistributed and modified only under the terms of // the GNU Lesser General Public License (See COPYING for details). // Copyright 2000-2001 Stefanus Du Toit and Alistair Riddoch. // Automatically generated using gen_cc.py. #ifndef ATLAS_OBJECTS_OPERATION_PERCEIVE_H #define ATLAS_OBJECTS_OPERATION_PERCEIVE_H #include namespace Atlas { namespace Objects { namespace Operation { /** Generic base operation for perceiving things by eyes, ears, etc... This is base operation for all other operations and defines basic attributes. You can use this as starting point for browsing whole operation hiearchy. refno refers to operation this is reply for. In examples all attributes that are just as examples (and thus world specific) are started with 'e_'. */ class Perceive : public Get { public: /// Construct a Perceive instance. Perceive(); protected: /// Constructor for sub-classes. Perceive(const char *,const char *); public: /// Default destructor. virtual ~Perceive(); /// Create a new class for Perceive. static Perceive Class(); protected: }; } } } // namespace Atlas::Objects::Operation #endif // ATLAS_OBJECTS_OPERATION_PERCEIVE_H