Codebase list pipenightdreams / debian/latest src / pointernone.h
debian/latest

Tree @debian/latest (Download .tar.gz)

pointernone.h @debian/latestraw · history · blame

/***************************************************************************
                          pointernone.h  -  description
                             -------------------
    begin                : Fri Sep 15 2000
    copyright            : (C) 2000 by Waldemar Baraldi
    email                : baraldi@lacasilla.com.ar
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef POINTER_NONE_H
#define POINTER_NONE_H

#include "pointer.h"

class PointerNone: public Pointer{

  public:

    PointerNone():Pointer(){
      image_name=new Str("pnone.png");
    }
};
#endif