Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members

stilvector.h

Go to the documentation of this file.
00001 /*******************************************************************************
00002  * Copyright (c) 2006 International Business Machines Corporation
00003  * All rights reserved. This program and the accompanying materials
00004  * are made available under the terms of the Common Public License v1.0
00005  * which accompanies this distribution, and is available at
00006  * http://www.opensource.org/licenses/cpl1.0.php
00007  *
00008  * Contributors:
00009  *    Douglas Sprague, Joel Wheeler - initial API and implementation
00010  *
00011  *****************************************************************************/
00012 
00013 #ifndef STILVector_H
00014 #define STILVector_H
00015 
00016 #include "stilvectorblock.h"   // STIL VectorBlock Base Class Interface
00017 
00018 //---------------------------------------------------------------------------
00024 //---------------------------------------------------------------------------
00025 class STILVector : public STILVectorBlock {
00026 
00027   // - Public members
00028   public:
00029 
00030     // - Default Constructor
00031     STILVector();
00032 
00033     // - Copy Constructor
00034     STILVector(const STILVector &);
00035 
00036     // - Destructor
00037     virtual ~STILVector();
00038 
00039     // - Assignment operator
00040     STILVector & operator=(const STILVector &);
00041 
00042     // - Initialize this STILVector object.
00043     void init();
00044 
00045     // - Write out this object to a given FILE
00046     virtual void write(FILE * pOutFile, LONG indentation=0) const;
00047 
00048 
00049   // Private section
00050   private:
00051 
00052 }; // end STILVector class
00053 
00054 #endif

This page last updated on 6 Jul 2007

SourceForge.net Logo