[ create a new paste ] login | about

Link: http://codepad.org/uYy1nC10    [ raw code | output | fork ]

sehe - C++, pasted on Apr 22:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef CMAP_H
#define CMAP_H

template <typename T>  class QVector;

class CMap
{
public:
    CMap(const unsigned int & width, const unsigned int & height, const unsigned int & hexagonRadius);
    CMap(const unsigned int & width, const unsigned int & height, const unsigned int & hexagonRadius, const QVector<QVector<unsigned int> > & landType);
    ~CMap();
private:
    class Pimple;
    Pimple * d;
};

#endif // CMAP_H


Output:
1
2
In function `_start':
undefined reference to `main'


Create a new paste based on this one


Comments: