summaryrefslogtreecommitdiff
path: root/src/T2FilePreview.h
blob: dce55134823d67dc3c9085cb5b81a657bbfcce97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#include "common.h"

class T2FilePreview : public CWnd {
    DECLARE_MESSAGE_MAP()

public:
    T2FilePreview();
    ~T2FilePreview();

    void SetFile(const char *path);

protected:
    void OnPaint();

    CString mStr40;
    CString mStr44;
};