File: mapitemtype.h

package info (click to toggle)
asc 2.6.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 81,592 kB
  • sloc: cpp: 158,704; sh: 11,544; ansic: 6,736; makefile: 606; perl: 138
file content (23 lines) | stat: -rw-r--r-- 922 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/***************************************************************************
 *                                                                         *
 *   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 mapitemtypeH
 #define mapitemtypeH

 #include "ascstring.h"
 
//! The base class for everything that can be placed on a map field
class MapItemType {
   public:
       virtual ASCString getName() const = 0;
       virtual int getID() const = 0;      
       virtual ~MapItemType() {};
};

#endif