00001 // -*-Mode: C++;-*- 00002 // $Header: /Volumes/cvsrep/developer/OpenADFortTk/src/lib/support/XlationCtxt.cxx,v 1.1 2003/09/17 19:45:05 eraxxon Exp $ 00003 00004 // * BeginCopyright ********************************************************* 00005 // *********************************************************** EndCopyright * 00006 00007 //*************************************************************************** 00008 // 00009 // File: 00010 // $Source: /Volumes/cvsrep/developer/OpenADFortTk/src/lib/support/XlationCtxt.cxx,v $ 00011 // 00012 // Purpose: 00013 // [The purpose of this file] 00014 // 00015 // Description: 00016 // [The set of functions, macros, etc. defined in the file] 00017 // 00018 //*************************************************************************** 00019 00020 //************************** System Include Files *************************** 00021 00022 #include <stdio.h> 00023 00024 //************************** Open64 Include Files *************************** 00025 00026 //*************************** User Include Files **************************** 00027 00028 #include "XlationCtxt.h" 00029 00030 //************************** Forward Declarations *************************** 00031 00032 //*************************************************************************** 00033 00034 //*************************************************************************** 00035 // CtxtFlags 00036 //*************************************************************************** 00037 00038 CtxtFlags::CtxtFlags() 00039 : flags(0) 00040 { 00041 } 00042 00043 CtxtFlags::~CtxtFlags() 00044 { 00045 } 00046 00047 void 00048 CtxtFlags::Dump(std::ostream& o) const 00049 { 00050 o << "{context}"; 00051 } 00052 00053 void 00054 CtxtFlags::DDump() const 00055 { 00056 Dump(std::cerr); 00057 } 00058
1.5.7.1