// 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_GET_H #define ATLAS_OBJECTS_OPERATION_GET_H #include namespace Atlas { namespace Objects { namespace Operation { /** Generic operation for getting info about things. 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 Get : public Action { public: /// Construct a Get instance. Get(); protected: /// Constructor for sub-classes. Get(const char *,const char *); public: /// Default destructor. virtual ~Get(); /// Create a new class for Get. static Get Class(); protected: }; } } } // namespace Atlas::Objects::Operation #endif // ATLAS_OBJECTS_OPERATION_GET_H