Hi All,
I have a class of type
class Row_Entry
{
public :
//CString symbol;
CString bid;
CString ask;
CString bid_size;
CString ask_size;
CString bmmid;
CString ammid;
CString type;
CString exch;
Row_Entry()
{
}
};
I am creating a vectorlike thisstd::vector<Row_Entry>RAW_ENTRY;
Now i have pushed all my required data in the vector.Please tell me how to retrieve the data from the vector RAW_ENTRY where bid is in desending/ascending order?
Please help as its urgent...
Thanks..
Jyotis