// PwnMe.cpp: implementation of the PwnMe class.
//
//////////////////////////////////////////////////////////////////////

#include "PwnMe.h"
#include <iostream>

using namespace std;

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

PwnMe::PwnMe()
{

}

PwnMe::~PwnMe()
{

}

void PwnMe::printHello() {
  cout << "Hello!" << endl; 
}