00001 #include "under.h" 00002 // 00003 //****************************************************************************** 00004 // UNDER.CPP 00005 //****************************************************************************** 00006 // 00007 // 00008 //******************************************************************************** 00009 // 00010 // Chris Anderson (C) UCLA 1995 00011 // 00012 // Fri Sep 01 17:52:03 1995 00013 // 00014 //******************************************************************************** 00015 // 00016 // Defintion of _ as an instance of the CAMunderscore class 00017 // 00018 //CAMunderscore __IMPEXP__ _; 00019 // 00020 // Constructors 00021 // 00022 CAMunderscore::CAMunderscore(){}; 00023 // 00024 // destructor 00025 // 00026 CAMunderscore::~CAMunderscore(){}; 00027 // 00028 // Public Member Functions 00029 // 00030 CAMrange CAMunderscore::operator()(long inputSize) 00031 {return CAMrange(inputSize);}; 00032 CAMrange CAMunderscore::operator()(long inputBase, long inputBound) 00033 {return CAMrange(inputBase, inputBound);}; 00034 CAMrange CAMunderscore::operator()(long inputBase, long inputBound, long inputStride) 00035 {return CAMrange(inputBase, inputBound, inputStride);}; 00036 // 00037 // 00038 //******************************************************************************** 00039 // CPP File End 00040 //******************************************************************************** 00041 // 00042 00043 00044