Skip to content

Commit

Permalink
Initial commit with date and time out of DISK_055 backup
Browse files Browse the repository at this point in the history
  • Loading branch information
lollisoft committed Mar 26, 2023
1 parent f5ba3e0 commit 1afc8a5
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions KANTE.H
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
// Das Objekt Kante stellt eine Verbindung von
// zwei Knoten dar, wobei Daten wie Entfernung
// usw. in der Kante gespeichert werden.

#ifndef __KANTE_H__
#define __KANTE_H__

class CDrawView;
class CDrawDoc;
class CDrawNode;

class CKante : public CDrawRect
{
protected:
DECLARE_SERIAL(CKante);
CKante();

public:
CKante(const CRect& position);

// Implementation
public:
virtual void Serialize(CArchive& ar);
virtual void Draw(CDC* pDC);

protected:

CDrawNode* node_AB;
int entfernung_AB;

CDrawNode* node_BA;
int entfernung_BA;

friend class CNodeTool;
}

#endif // Kante

0 comments on commit 1afc8a5

Please sign in to comment.