OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
actionread.hpp
Go to the documentation of this file.
1 #ifndef GAME_MWWORLD_ACTIONREAD_H
2 #define GAME_MWWORLD_ACTIONREAD_H
3 
4 #include "action.hpp"
5 #include "ptr.hpp"
6 
7 namespace MWWorld
8 {
9  class ActionRead : public Action
10  {
11  virtual void executeImp (const MWWorld::Ptr& actor);
12 
13  public:
15  ActionRead (const Ptr& object);
16  };
17 }
18 
19 #endif // ACTIONOPEN_H
virtual void executeImp(const MWWorld::Ptr &actor)
Definition: actionread.cpp:20
Abstract base for actions.
Definition: action.hpp:11
ActionRead(const Ptr &object)
Definition: actionread.cpp:16
Pointer to a LiveCellRef.
Definition: ptr.hpp:19
Definition: actionread.hpp:9