ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/visitors/OtherVisitor.hpp
(Generate patch)

Comparing trunk/OOPSE-4/src/visitors/OtherVisitor.hpp (file contents):
Revision 2204 by gezelter, Fri Apr 15 22:04:00 2005 UTC vs.
Revision 2240 by tim, Thu May 26 22:45:00 2005 UTC

# Line 58 | Line 58 | namespace oopse {
58  
59    class WrappingVisitor : public BaseVisitor{
60    public:
61 <    WrappingVisitor(SimInfo* info) : BaseVisitor() {
61 >    WrappingVisitor(SimInfo* info, bool useCom = true) : BaseVisitor(), useCom_(useCom) {
62        this->info = info;
63        visitorName = "WrappingVisitor";
64      }
# Line 68 | Line 68 | namespace oopse {
68  
69      virtual const std::string toString();
70  
71 <  protected:
71 >    virtual void update();
72 >    
73 >  private:
74      void internalVisit(StuntDouble* sd);
75 <    SimInfo* info;
75 >    SimInfo* info;    
76 >    Vector3d origin_;
77 >    bool useCom_;
78    };
79  
80  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines