All pastes #2075238 Raw Edit

Stuff

public text v1 · immutable
#2075238 ·published 2011-06-05 21:45 UTC
rendered paste body
********************** p1.h  ********************************

class TEST_CLASS
{
   private:
        int x;
   public:
        int getX();
}



*********************end of p1.h ***************************

********************** p1.cpp  ********************************

#include "p1.h"

int TEST_CLASS::getX()
{
return x;
}


********************** end of p1.cpp  ****************************