blob: 8514cad3431a46885e13e8243102a18d4beee862 (
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
26
27
28
29
30
31
|
#ifndef __TEMPLATEVIEWTAB_H
#define __TEMPLATEVIEWTAB_H
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string>
#include <vector>
#include <map>
#include <set>
#include "templatepixmap.h"
using namespace std;
// --- cTemplateViewTab -------------------------------------------------------------
class cTemplateViewTab : public cTemplatePixmap {
private:
int scrollStep;
public:
cTemplateViewTab(void);
~cTemplateViewTab(void);
int GetScrollStep(void);
string GetName(void);
void SetName(string trans);
void Debug(void);
};
#endif //__TEMPLATEVIEWTAB_H
|