-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<% | ||
Class dictionary | ||
Dim fixed_array() | ||
Dim last_index_searched | ||
Dim my_dictionary | ||
' Initialization and destruction' | ||
sub class_initialize() | ||
Redim fixed_array(1) | ||
fixed_array(0) = Null | ||
fixed_array(1) = Null | ||
Dim temp_array(0) | ||
temp_array(0) = fixed_array | ||
my_dictionary = temp_array | ||
end sub | ||
sub class_terminate() | ||
' Destroy all elements of the arrays' | ||
redim lines(-1) | ||
redim headers(-1) | ||
end sub | ||
end Class | ||
%> |