1 /***************************************************************************
2                           pointercross.h  -  description
3                              -------------------
4     begin                : Fri Sep 15 2000
5     copyright            : (C) 2000 by Waldemar Baraldi
6     email                : baraldi@lacasilla.com.ar
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 
18 #ifndef POINTER_CROSS_H
19 #define POINTER_CROSS_H
20 
21 #include "pointer.h"
22 
23 class PointerCross: public Pointer{
24 
25   public:
26 
PointerCross()27   PointerCross():Pointer(){
28     image_name=new Str("pcross.png");
29   }
30 };
31 #endif
32 
33