Source: ./Nobel/BlockExceptionRep.h
|
|
|
|
#ifndef BLOCKEXCEPTIONREP_H
#define BLOCKEXCEPTIONREP_H
#include<string>
#include"SelfTestingObject.h"
#include"Pose.h"
#include"Vector.h"
namespace Nobel {
//Body:
class BlockExceptionRep : public SelfTestingObject {
public:
Vector unmoved;
Vector blockLocation;
virtual std::string asString() const;
explicit BlockExceptionRep(const Vector&, const Vector&);
BlockExceptionRep(const BlockExceptionRep&);
BlockExceptionRep& operator=(const BlockExceptionRep&);
virtual ~BlockExceptionRep();
virtual bool invariant() const;
};
}
#endif
Generated by: hoppq@ilenkone on Thu Mar 1 15:43:18 2001, using kdoc 2.0a50. |