Index: sample/pingpong/main.cpp
===================================================================
--- sample/pingpong/main.cpp	(revision 4626)
+++ sample/pingpong/main.cpp	(revision 4733)
@@ -6,40 +6,4 @@
 using ariba::utility::StartupWrapper;
 using ariba::application::pingpong::PingPong;
-
-//*************************************************
-/*
-#include <iostream>
-#include <boost/cstdint.hpp>
-
-using std::cout;
-using std::endl;
-
-void debugging(){
-
-	cout << "int" << " - \t \t" << sizeof(int) << endl;
-	cout << "unsigned int" << " - \t \t" << sizeof(unsigned int) << endl;
-	cout << "long" << " - \t \t" << sizeof(long) << endl;
-	cout << "unsigned long" << " - \t \t" << sizeof(unsigned long) << endl;
-	cout << "char" << " - \t \t" << sizeof(char) << endl;
-	cout << "unsigned char" << " - \t \t" << sizeof(unsigned char) << endl;
-	cout << "short" << " - \t \t" << sizeof(short) << endl;
-	cout << "unsigned short" << " - \t \t" << sizeof(unsigned short) << endl;
-	cout << "uint16_t" << " - \t \t" << sizeof(uint16_t) << endl;
-	cout << "uint8_t" << " - \t \t" << sizeof(uint8_t) << endl;
-	cout << "uint32_t" << " - \t \t" << sizeof(uint32_t) << endl;
-	cout << "int8_t" << " - \t \t" << sizeof(int8_t) << endl;
-	cout << "int16_t" << " - \t \t" << sizeof(int16_t) << endl;
-	cout << "int32_t" << " - \t \t" << sizeof(int32_t) << endl;
-	cout << "boost::uint16_t" << " - \t \t" << sizeof(boost::uint16_t) << endl;
-	cout << "boost::uint8_t" << " - \t \t" << sizeof(boost::uint8_t) << endl;
-	cout << "boost::uint32_t" << " - \t \t" << sizeof(boost::uint32_t) << endl;
-	cout << "boost::int8_t" << " - \t \t" << sizeof(boost::int8_t) << endl;
-	cout << "boost::int16_t" << " - \t \t" << sizeof(boost::int16_t) << endl;
-	cout << "boost::int32_t" << " - \t \t" << sizeof(boost::int32_t) << endl;
-
-}
-*/
-//*************************************************
-
 
 int main( int argc, char** argv ) {
@@ -63,2 +27,15 @@
 	return 0;
 }
+
+/* Chris's debugging stuff
+
+	#include "ariba/utility/bootstrap/BootstrapManager.h"
+	using ariba::utility::BootstrapManager;
+
+	StartupWrapper::startSystem();
+	BootstrapManager::instance().registerModule(
+			BootstrapManager::BootstrapTypeMulticastDns);
+	BootstrapManager::instance().publish("testname", "testinfo");
+	getchar();
+	return 0;
+*/
