C++ World

C++ Resources, Tips,
Documentation, Examples,
HOWTO's, FAQ's, Tools
Libraries, Frameworks, IDE's

 
© 2005,2009 C++ World - All rights reserved - webdesign.arttina
C++, Sockets, SysProg, Libraries, Examples, Tools, Compilers, IDE, STL, XML
Google
FAQ Sockets Socket Library Software Engineering Sysprog Examples Books
 
Home
C++
The C Language
STL
BOOST
GNU
GNU C Compiler
GNU Debugger
GNU Profiler
HP C++ Compiler
DDD
Eclipse
Curses
XML
X11
KDevelop
MS Visual Studio
Tutorials
// **************************************************************
// Com ++ Framework by the C++ World
// Please report defects: mailto:compp@cplusplusworld.com
// Please visit: http://www.cplusplusworld.com/socketlibrary.html
// **************************************************************

#include <iostream>
#include <cstdlib>
#include "ComPlusPlus/ComPlusPlus"

#include <string>

class Clone1 : public compp::Clone {

 int Run ( ) {
   while ( true ) {
    syspp::Call::Sleep(1);
    std::cout << "**Clone \n";
   }
  return 0; // Hi Lint
 }

};
int main (int argc, char *argv [] ) {
try {	
  int loops = 15;
  Clone1 *C1 = new Clone1();
  C1->SetAutoTerm(true);
  C1->Start();
  
  while ( loops-- != 0 ) {
    syspp::Call::Sleep(1);
    std::cout << "**Parent \n";
    std::cout << loops << " Rounds to finish\n";
  }
  delete C1;

} catch ( syspp::ComException e ) {
	std::cout <<  "Exception " << e.what() << "\n" ;	
}
 return 0;	
}


syntax highlighted by Code2HTML, v. 0.9.1


Franz Brandel Contact Legal Statement Sitemap C++ World