blob: 6b5c34a5f0a5cdf15d2a87f7c63edeb57b980e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef __TEMPLATEVIEWGRID_H
#define __TEMPLATEVIEWGRID_H
#include <string>
#include <vector>
#include <map>
#include <set>
#include <sstream>
#include "templateviewelement.h"
using namespace std;
// --- cTemplateViewGrid -------------------------------------------------------------
class cTemplateViewGrid : public cTemplateViewElement {
private:
public:
cTemplateViewGrid(void);
~cTemplateViewGrid(void);
bool CalculatePixmapParameters(void);
void Debug(void);
};
#endif //__TEMPLATEVIEWGRID_H
|