Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2. #include <xercesc/util/PlatformUtils.hpp>
  3.  
  4. using namespace std;
  5. using namespace xercesc;
  6.  
  7. int main() {
  8.  
  9.     try {
  10.         XMLPlatformUtils::Initialize();
  11.       }
  12.       catch (const XMLException& toCatch) {
  13.         // Do your failure processing here
  14.         return 1;
  15.       }
  16.  
  17.     cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement