00001 //<<<<<< INCLUDES >>>>>> 00002 00003 #include "Iguana/Studio/interface/IgQtSiteStack.h" 00004 #include "Iguana/Framework/interface/IgDocumentDataRoot.h" 00005 00006 //<<<<<< PRIVATE DEFINES >>>>>> 00007 //<<<<<< PRIVATE CONSTANTS >>>>>> 00008 //<<<<<< PRIVATE TYPES >>>>>> 00009 //<<<<<< PRIVATE VARIABLE DEFINITIONS >>>>>> 00010 //<<<<<< PUBLIC VARIABLE DEFINITIONS >>>>>> 00011 //<<<<<< CLASS STRUCTURE INITIALIZATION >>>>>> 00012 //<<<<<< PRIVATE FUNCTION DEFINITIONS >>>>>> 00013 //<<<<<< PUBLIC FUNCTION DEFINITIONS >>>>>> 00014 //<<<<<< MEMBER FUNCTION DEFINITIONS >>>>>> 00015 00016 IgQtSiteStack::IgQtSiteStack (void) 00017 :m_currentName (IgDocumentDataRoot::getCurrentRoot()) 00018 { 00019 } 00020 00021 IgQtSiteStack * 00022 IgQtSiteStack::hostWithName (const QString &name) 00023 { 00024 m_currentName = name; 00025 return this; 00026 } 00027 00028 QString 00029 IgQtSiteStack::currentName (void) 00030 { 00031 return m_currentName; 00032 } 00033 00034 void 00035 IgQtSiteStack::tile (void) 00036 { 00037 } 00038 00039 void 00040 IgQtSiteStack::cascade (void) 00041 { 00042 }