IMailMergeCallback.h
1
// Copyright 2001-2022 Aspose Pty Ltd. All Rights Reserved.
3
//
4
// This file is part of Aspose.Words. The source code in this file
5
// is only intended as a supplement to the documentation, and is provided
6
// "as is", without warranty of any kind, either expressed or implied.
9
#pragma once
10
11
#include <system/object.h>
12
13
#include <Aspose.Words.Cpp/aspose_words_api_defs.h>
14
15
namespace
Aspose
{
16
17
namespace
Words
{
18
19
namespace
MailMerging {
20
23
class
ASPOSE_WORDS_SHARED_CLASS
IMailMergeCallback
:
public
System::Object
24
{
25
typedef
IMailMergeCallback
ThisType
;
26
typedef
System::Object
BaseType
;
27
28
typedef ::System::BaseTypesInfo<BaseType>
ThisTypeBaseTypesInfo
;
29
ASPOSE_WORDS_SHARED_RTTI_INFO_DECL();
30
31
public
:
32
36
virtual
void
TagsReplaced
() = 0;
37
38
};
39
40
}
41
}
42
}