Home
Fractals
Tutorials
Books
Archive
My blog
My LinkedIn Profile

BOOKS i'm reading

Napoleon Hill Keys to Success: The 17 Principles of Personal Achievement, Napoleon Hill, ISBN: 978-0452272811
The 4-Hour Workweek: Escape 9-5, Live Anywhere, and Join the New Rich (Expanded and Updated), Timothy Ferriss, ISBN: 978-0307465351
The Fountainhead, Ayn Rand, ISBN: 0452273331

/*
 * Module ID: cqtreex.cpp
 * Titre    : Declaration des exceptions pouvant etre lancees par
 *            la classe ClusteringQuadTree.
 *
 * Auteur   : Olivier Langlois <olivier@olivierlanglois.net>
 * Date     : 05 Mars 1998
 */

#ifndef CQTREEX_H
#define CQTREEX_H

#include "diagnose.h"

enum CQTreeError
{
  QTX_LIST_SIZE,
  QTX_INSERT
};

class CQTreeEx : public ExceptionBase
{
  public:
     CQTreeEx( CQTreeError err )
     {
        Error = err;
     }

     CQTreeError WhatsWrong( void )
     {
        return Error;
     }

     virtual void Explain( DiagOutput &diag );

  private:
     CQTreeError Error;
};

#endif

Home :: Fractals :: Tutorials :: Books :: Archive :: My blog :: My LinkedIn Profile :: Contact