IFontSavingCallback.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
Saving
20
{
21
class
FontSavingArgs;
22
}
23
}
24
}
25
26
namespace
Aspose
{
27
28
namespace
Words
{
29
30
namespace
Saving {
31
102
class
ASPOSE_WORDS_SHARED_CLASS
IFontSavingCallback
:
public
virtual
System::Object
103
{
104
typedef
IFontSavingCallback
ThisType
;
105
typedef
System::Object
BaseType
;
106
107
typedef ::System::BaseTypesInfo<BaseType>
ThisTypeBaseTypesInfo
;
108
ASPOSE_WORDS_SHARED_RTTI_INFO_DECL();
109
110
public
:
111
180
virtual
void
FontSaving
(
System::SharedPtr<Aspose::Words::Saving::FontSavingArgs>
args) = 0;
181
182
};
183
184
}
185
}
186
}