Main Page
Class Hierarchy
Alphabetical List
Compound List
File List
Compound Members
include
FXVariantArray.h
1
/********************************************************************************
2
* *
3
* V a r i a n t - A r r a y *
4
* *
5
*********************************************************************************
6
* Copyright (C) 1998,2024 by Jeroen van der Zijp. All Rights Reserved. *
7
*********************************************************************************
8
* This library is free software; you can redistribute it and/or modify *
9
* it under the terms of the GNU Lesser General Public License as published by *
10
* the Free Software Foundation; either version 3 of the License, or *
11
* (at your option) any later version. *
12
* *
13
* This library is distributed in the hope that it will be useful, *
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16
* GNU Lesser General Public License for more details. *
17
* *
18
* You should have received a copy of the GNU Lesser General Public License *
19
* along with this program. If not, see <http://www.gnu.org/licenses/> *
20
********************************************************************************/
21
#ifndef FXVARIANTARRAY_H
22
#define FXVARIANTARRAY_H
23
24
namespace
FX
{
25
26
28
class
FXAPI
FXVariantArray
:
public
FXArray
<FXVariant> {
29
public
:
30
32
FXVariantArray
();
33
35
FXVariantArray
(FXival n);
36
38
FXVariantArray
(
const
FXVariantArray
& other);
39
41
FXVariantArray
(
const
FXVariant
& src,FXival n);
42
44
FXVariantArray
(
const
FXVariant
* src,FXival n);
45
47
~
FXVariantArray
();
48
};
49
50
}
51
52
#endif
FX::FXVariant
A Variant type can hold any kind of object, be it a boolean, integer, real, string, or even array of Variants or dictionaries of variants.
Definition:
FXVariant.h:44
FX::FXArray
Array of some generic type.
Definition:
FXArray.h:44
FX
Definition:
FX4Splitter.h:28
FX::FXVariantArray
Array of variants.
Definition:
FXVariantArray.h:28
Copyright © 1997-2022 Jeroen van der Zijp