00001 #ifndef _QGUISESSIONITEM_HH_ 00002 #define _QGUISESSIONITEM_HH_ 00003 00010 #include <string> 00011 #include "QGTextFileKeys.hh" 00012 00013 class QGuiSessionItem 00014 { 00015 public: 00017 virtual std::string Dump() const {return "";} 00018 00020 virtual ~QGuiSessionItem(); 00021 00023 void SetName(const std::string& name) {fName = name;} 00024 00025 protected: 00027 QGuiSessionItem(); 00028 00030 std::string fName; 00031 00032 friend class QGuiSession; 00033 }; 00034 00035 #endif