Wt examples  3.2.0
Public Member Functions | Public Attributes
GitModel::ChildIndex Class Reference

Index usable as a key to a map, that identifies a child/row within a tree. More...

List of all members.

Public Member Functions

 ChildIndex (int aParent, int anIndex)
bool operator< (const ChildIndex &other) const

Public Attributes

int parentId
int index

Detailed Description

Index usable as a key to a map, that identifies a child/row within a tree.

Definition at line 112 of file GitModel.h.


Constructor & Destructor Documentation

GitModel::ChildIndex::ChildIndex ( int  aParent,
int  anIndex 
) [inline]

Definition at line 116 of file GitModel.h.

      : parentId(aParent), index(anIndex) { }

Member Function Documentation

bool GitModel::ChildIndex::operator< ( const ChildIndex other) const [inline]

Definition at line 119 of file GitModel.h.

                                                   {
      if (parentId < other.parentId)
        return true;
      else if (parentId > other.parentId)
        return false;
      else return index < other.index;
    }

Member Data Documentation

Definition at line 114 of file GitModel.h.

Definition at line 113 of file GitModel.h.


The documentation for this class was generated from the following file:

Generated on Tue Nov 29 2011 for the C++ Web Toolkit (Wt) by doxygen 1.7.5.1