![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2006 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: objectConsolePrinter.h,v $ $Revision: 1.4 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00013 00014 #ifndef objectConsolePrinter_H_ 00015 #define objectConsolePrinter_H_ 00016 00017 #include <vlutil/vlPrint.h> 00018 #include "vrfobjcore/vrfobjcoreDefines.h" 00019 00020 class DtVrfObject; 00021 00024 class DT_DLL_vrfobjcore DtObjectConsoleNetworkPrinter : public DtPrinter 00025 { 00026 private: 00028 DtObjectConsoleNetworkPrinter(); 00029 00030 public: 00031 DtObjectConsoleNetworkPrinter(DtVrfObject* vrfObj); 00032 00033 virtual void write(const std::string &str, int notify_level); 00034 00035 protected: 00036 DtVrfObject* myVrfObject; 00037 }; 00038 00042 class DT_DLL_vrfobjcore DtObjectConsoleVrlinkPrinter : public DtPrinter 00043 { 00044 private: 00046 DtObjectConsoleVrlinkPrinter(); 00047 00048 public: 00049 DtObjectConsoleVrlinkPrinter(DtVrfObject* vrfObj); 00050 00056 virtual void write(const std::string& str, int notify_level); 00057 00058 protected: 00059 DtVrfObject* myVrfObject; 00060 }; 00061 00062 #endif