//
// File geschwindigkeit2d.h

#include "vektor.h"

#ifndef GESCHWINDIGKEIT2D_H
#define GESCHWINDIGKEIT2D_H 1

class Geschwindigkeit2D : public Vektor {

	public:
		Geschwindigkeit2D(const Geschwindigkeit2D& v);
		Geschwindigkeit2D(float x, float y);
		void ausgabe();
};

#endif