This commit is contained in:
kvisco%ziplink.net 2000-02-22 11:10:01 +00:00
Родитель 93314e0f04
Коммит 6b792d69ae
4 изменённых файлов: 16 добавлений и 32 удалений

Просмотреть файл

@ -1,23 +1,3 @@
/*
* (C) Copyright The MITRE Corporation 1999 All rights reserved.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* The program provided "as is" without any warranty express or
* implied, including the warranty of non-infringement and the implied
* warranties of merchantibility and fitness for a particular purpose.
* The Copyright owner will not be liable for any damages suffered by
* you as a result of using the Program. In no event will the Copyright
* owner be liable for any special, indirect or consequential damages or
* lost profits even if the Copyright owner has been advised of the
* possibility of their occurrence.
*
* Please see release.txt distributed with this file for more information.
*
*/
/*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
@ -41,7 +21,7 @@
* Keith Visco, kvisco@ziplink.net
* -- original author.
*
* $Id: MITREObjectWrapper.cpp,v 1.2 1999-11-15 07:12:40 nisheeth%netscape.com Exp $
* $Id: MITREObjectWrapper.cpp,v 1.3 2000-02-22 11:09:51 kvisco%ziplink.net Exp $
*/
#include "MITREObject.h"

Просмотреть файл

@ -3,7 +3,8 @@ target: make_base
CC := $(CC) -g
BASE_OBJS = CommandLineUtils.o \
Double.o \
Double.o \
HashTable.o \
Integer.o \
List.o \
MITREObjectWrapper.o \
@ -22,6 +23,9 @@ CommandLineUtils.o: CommandLineUtils.h CommandLineUtils.cpp
Double.o: primitives.h Double.cpp
$(CC) -c Double.cpp
HashTable.o: HashTable.h HashTable.cpp
$(CC) -c HashTable.cpp
Integer.o: primitives.h Integer.cpp
$(CC) -c Integer.cpp

Просмотреть файл

@ -21,17 +21,17 @@
* Keith Visco, kvisco@ziplink.net
* -- original author.
*
* $Id: NamedMap.h,v 1.2 1999-11-15 07:12:41 nisheeth%netscape.com Exp $
* $Id: NamedMap.h,v 1.3 2000-02-22 11:10:00 kvisco%ziplink.net Exp $
*/
/**
* A Named Map for MITREObjects
* @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
* @version $Revision: 1.2 $ $Date: 1999-11-15 07:12:41 $
* @version $Revision: 1.3 $ $Date: 2000-02-22 11:10:00 $
**/
#ifndef MITREXSL_NAMEDMAP_H
#define MITREXSL_NAMEDMAP_H
#ifndef TRANSFRMX_NAMEDMAP_H
#define TRANSFRMX_NAMEDMAP_H
#include "String.h"
#include "baseutils.h"

Просмотреть файл

@ -23,20 +23,20 @@
* Bob Miller, kbob@oblix.com
* -- plugged core leak.
*
* $Id: StringList.h,v 1.4 2000-02-17 20:56:20 kvisco%ziplink.net Exp $
* $Id: StringList.h,v 1.5 2000-02-22 11:10:01 kvisco%ziplink.net Exp $
*/
/**
* A class for keeping an ordered list of Strings
* @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
* @version $Revision: 1.4 $ $Date: 2000-02-17 20:56:20 $
* @version $Revision: 1.5 $ $Date: 2000-02-22 11:10:01 $
**/
#include "String.h"
#include "baseutils.h"
#ifndef MITREXSL_STRINGLIST_H
#define MITREXSL_STRINGLIST_H
#ifndef TRANSFRMX_STRINGLIST_H
#define TRANSFRMX_STRINGLIST_H
class StringList {
friend class StringListIterator;
@ -51,7 +51,7 @@ class StringList {
/**
* StringList destructor
**/
~StringList();
virtual ~StringList();
MBool contains(String& search);
@ -112,7 +112,7 @@ public:
StringListIterator(StringList* list);
~StringListIterator();
virtual ~StringListIterator();
void add(String* strptr);