Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 13th, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 4  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #pragma once
  2.  
  3. #include <Windows.h>
  4. #include <vector>
  5.  
  6. #include "xConWindow.h"
  7.  
  8. namespace xCon{
  9.     class xConWindow;
  10.  
  11.     class xConMessageHandler {
  12.     const xConWindow& xWin;
  13.  
  14.     public:
  15.         xConMessageHandler(const xConWindow& xWin);
  16.         int run();
  17.     };
  18. }