V-ART
descriptionlocator.h
Go to the documentation of this file.
1 
5 #ifndef VART_DESCRIPTIONLOCATOR_H
6 #define VART_DESCRIPTIONLOCATOR_H
7 
8 #include "vart/snlocator.h"
9 #include <string>
10 
11 namespace VART {
17  {
18  public:
19  // PUBLIC STATIC METHODS
20  // PUBLIC METHODS
21  DescriptionLocator(const std::string& description);
22  virtual void OperateOn(const SceneNode* snPtr);
23  protected:
24  // PROTECTED STATIC METHODS
25  // PROTECTED METHODS
26  // PROTECTED STATIC ATTRIBUTES
27  // PROTECTED ATTRIBUTES
28  std::string targetDescription;
29  }; // end class declaration
30 } // end namespace
31 
32 #endif
Locates a SceneNode by its description.
Base class for objects that compose a scene graph.
Definition: scenenode.h:25
virtual void OperateOn(const SceneNode *snPtr)
Process given node.
DescriptionLocator(const std::string &description)
Header file for V-ART class "SNLocator".
Scene Node Locator – used to find a particular object in the scene graph.
Definition: snlocator.h:25