Fixes for IRIX and Boris Bralo's TerraPage loader.

This commit is contained in:
Robert Osfield
2002-02-08 09:30:02 +00:00
parent 62d8b1e8de
commit 4c5fcd3f61
45 changed files with 11037 additions and 11 deletions

View File

@@ -0,0 +1,43 @@
/* ************************
Copyright Terrain Experts Inc.
Terrain Experts Inc (TERREX) reserves all rights to this source code
unless otherwise specified in writing by the Chief Operating Officer
of TERREX.
This copyright may be updated in the future, in which case that version
supercedes this one.
-------------------
Terrex Experts Inc.
84 West Santa Clara St., Suite 380
San Jose, CA 95113
info@terrex.com
Tel: (408) 293-9977
************************
*/
/* trpage_basic.cpp
Methods for checkable base class.
*/
#include <stdlib.h>
#include <stdio.h>
#include "trpage_io.h"
/* Checkable
This is just a class that checks validity.
Starts out invalid.
*/
trpgCheckable::trpgCheckable()
{
valid = false;
}
trpgCheckable::~trpgCheckable()
{
valid = false;
}
bool trpgCheckable::isValid() const
{
return valid;
}