1
0
mirror of https://github.com/lxsang/antd-lua-plugin synced 2025-01-06 05:48:22 +01:00
antd-lua-plugin/lib/ann/fann/docs/NaturalDocs-1.52/Modules/NaturalDocs/ImageReferenceTable/Reference.pm
2018-09-19 15:08:49 +02:00

46 lines
1.3 KiB
Perl
Executable File

###############################################################################
#
# Package: NaturalDocs::ImageReferenceTable::Reference
#
###############################################################################
#
# A class for references being tracked in <NaturalDocs::SourceDB>.
#
###############################################################################
# This file is part of Natural Docs, which is Copyright © 2003-2010 Greg Valure
# Natural Docs is licensed under version 3 of the GNU Affero General Public License (AGPL)
# Refer to License.txt for the complete details
use strict;
use integer;
package NaturalDocs::ImageReferenceTable::Reference;
use base 'NaturalDocs::SourceDB::Item';
use NaturalDocs::DefineMembers 'TARGET', 'Target()', 'SetTarget()',
'NEEDS_REBUILD', 'NeedsRebuild()', 'SetNeedsRebuild()';
#
# Variables: Members
#
# The following constants are indexes into the object array.
#
# TARGET - The image <FileName> this reference resolves to, or undef if none.
#
#
# Functions: Member Functions
#
# Target - Returns the image <FileName> this reference resolves to, or undef if none.
# SetTarget - Replaces the image <FileName> this reference resolves to, or undef if none.
#
1;