cgma
GeometryEntity.cpp
Go to the documentation of this file.
00001 //-------------------------------------------------------------------------
00002 // Filename      : GeometryEntity.cpp
00003 //
00004 // Purpose       : 
00005 //
00006 // Special Notes :
00007 //
00008 // Creator       : Xuechen Liu
00009 //
00010 // Creation Date : 07/31/96
00011 //
00012 // Owner         : Malcolm J. Panthaki
00013 //-------------------------------------------------------------------------
00014 
00015 // ********** BEGIN STANDARD INCLUDES      **********
00016 // ********** END STANDARD INCLUDES        **********
00017 
00018 // ********** BEGIN CUBIT INCLUDES         **********
00019 #include "CubitMessage.hpp"
00020 #include "DLIList.hpp"
00021 #include "GeometryEntity.hpp"
00022 // ********** END CUBIT INCLUDES           **********
00023 
00024 // ********** BEGIN STATIC DECLARATIONS    **********
00025 // ********** END STATIC DECLARATIONS      **********
00026 
00027 // ********** BEGIN PUBLIC FUNCTIONS       **********
00028 
00029 //-------------------------------------------------------------------------
00030 // Purpose       : Destructor. Does not do anything right now.
00031 //
00032 // Special Notes :
00033 //
00034 // Creator       : Raikanta Sahu
00035 //
00036 // Creation Date : 09/05/96
00037 //-------------------------------------------------------------------------
00038 
00039 GeometryEntity::~GeometryEntity()
00040 {}
00041 
00042 void GeometryEntity::get_saved_names( std::vector<CubitString> &names )
00043 {
00044   names = myNames;
00045 }
00046 
00047 void GeometryEntity::set_saved_names( const std::vector<CubitString>& names )
00048 {
00049   myNames = names;
00050 }
00051 
00052 // ********** END PUBLIC FUNCTIONS         **********
00053 
00054 // ********** BEGIN PROTECTED FUNCTIONS    **********
00055 // ********** END PROTECTED FUNCTIONS      **********
00056 
00057 // ********** BEGIN PRIVATE FUNCTIONS      **********
00058 // ********** END PRIVATE FUNCTIONS        **********
00059 
00060 // ********** BEGIN HELPER CLASSES         **********
00061 // ********** END HELPER CLASSES           **********
00062 
00063 // ********** BEGIN EXTERN FUNCTIONS       **********
00064 // ********** END EXTERN FUNCTIONS         **********
00065 
00066 // ********** BEGIN STATIC FUNCTIONS       **********
00067 // ********** END STATIC FUNCTIONS         **********
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines