cgma
vertstuffcompfn_less Class Reference

#include <FBStructs.hpp>

List of all members.

Public Member Functions

bool operator() (const VertexStuff *vfirst, const VertexStuff *vsecond) const

Detailed Description

Definition at line 161 of file FBStructs.hpp.


Member Function Documentation

bool vertstuffcompfn_less::operator() ( const VertexStuff vfirst,
const VertexStuff vsecond 
) const [inline]

Definition at line 164 of file FBStructs.hpp.

  {
    if ( vfirst->p_dir_coord < vsecond->p_dir_coord ) return true;
    else if ( vfirst->p_dir_coord > vsecond->p_dir_coord ) return false;
    else {
      if ( vfirst->s_dir_coord < vsecond->s_dir_coord ) return true;
      else return false;
    }
  }

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines