/*
    C++ Mesh Generation Library
    Copyright (c) 2000echet <eric at bechet dot ca>

    This file is part of the C++ Mesh Generation Library.

    See the NOTICE & LICENSE files for conditions.
*/
#ifndef FM_NODE_H
#define FM_NODE_H

using namespace std;

namespace FM
{

  class Node
  {
  public:
    virtual void GetPos ( double& x,double &y,double &z ) const =0;
    virtual bool operator < ( const Node& other ) const =0;

  };

}
#endif //FM_NODE_H
 
