Changeset 598

Show
Ignore:
Timestamp:
07/21/08 08:44:14 (4 months ago)
Author:
weyrick
Message:

sketch in a few classes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/rphp/runtime/CMakeLists.txt

    r594 r598  
    1414  pObject.cpp 
    1515  pTypes.cpp 
     16  pRuntime.cpp 
     17  pOutputBuffer.cpp 
     18  pOutputManager.cpp 
    1619) 
    1720 
  • trunk/rphp/runtime/include/pRuntime.h

    r593 r598  
    2121 
    2222#include "pTypes.h" 
     23#include "pOutputManager.h" 
     24 
     25namespace rphp { 
     26 
     27    class pRuntimeEngine { 
     28 
     29        private: 
     30            pOutputManager outputManager; 
     31 
     32        public: 
     33            pRuntimeEngine() { } 
     34 
     35    }; 
     36 
     37} 
    2338 
    2439#endif /* RPHP_PRUNTIME_H_ */