hackedteam/core-winmobile

View on GitHub
Mornella/Mornella_Mobile/Manager.cpp

Summary

Maintainability
Test Coverage
#include "Manager.h"

Manager::Manager() : hMutex(NULL) {
    /*hMutex = CreateMutex(NULL, FALSE, NULL);

    if (hMutex == NULL)
        throw new exception();*/
}

Manager::~Manager() {
    /*if (hMutex != NULL)
        CloseHandle(hMutex);*/
}