-
Notifications
You must be signed in to change notification settings - Fork 0
/
documentdestination.h
executable file
·38 lines (32 loc) · 1.08 KB
/
documentdestination.h
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
32
33
34
35
36
37
38
/*Copyright 2001
*
* documentdestination.h
*
* Author: Gregory Ford [email protected]
* RTF token parser based on:
* rtf2html by Dmitry Porapov <[email protected]>,
* based on earlier work of Chuck Shotton.
* distributed under BSD-style license
* RTF token lists and hashing algorithm based on
* RTF Tools, Release 1.10
* 6 April 1994
* Paul DuBois [email protected]
*
* Copying permitted under GNU licence (see COPYING)
*/
// documentdestination.h: interface for the DocumentDestination class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DOCUMENTDESTINATION_H__A8B97BF1_18E0_11D5_9485_0080AD7A2368__INCLUDED_)
#define AFX_DOCUMENTDESTINATION_H__A8B97BF1_18E0_11D5_9485_0080AD7A2368__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Destination.h"
class DocumentDestination : public Destination
{
public:
DocumentDestination();
virtual ~DocumentDestination();
};
#endif // !defined(AFX_DOCUMENTDESTINATION_H__A8B97BF1_18E0_11D5_9485_0080AD7A2368__INCLUDED_)