blob: 10d0a96bb930724cf09727b68eeb7b37f964dc24 (
plain)
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
39
40
41
42
43
44
|
###############################################################################
#
# Package: NaturalDocs::ImageReferenceTable::Reference
#
###############################################################################
#
# A class for references being tracked in <NaturalDocs::SourceDB>.
#
###############################################################################
# This file is part of Natural Docs, which is Copyright (C) 2003-2008 Greg Valure
# Natural Docs is licensed under the GPL
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;
|