mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2026-06-30 21:57:09 +02:00
Major plugin refactor and cleanup.
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// CppUnit.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_CppUnit_INCLUDED
|
||||
#define Poco_CppUnit_CppUnit_INCLUDED
|
||||
|
||||
#include "CppUnit/CppUnit.h"
|
||||
|
||||
#endif // Poco_CppUnit_CppUnit_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// CppUnitException.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_CppUnitException_INCLUDED
|
||||
#define Poco_CppUnit_CppUnitException_INCLUDED
|
||||
|
||||
#include "CppUnit/CppUnitException.h"
|
||||
|
||||
#endif // Poco_CppUnit_CppUnitException_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Guards.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_Guards_INCLUDED
|
||||
#define Poco_CppUnit_Guards_INCLUDED
|
||||
|
||||
#include "CppUnit/Guards.h"
|
||||
|
||||
#endif // Poco_CppUnit_Guards_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Orthodox.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_Orthodox_INCLUDED
|
||||
#define Poco_CppUnit__INCLUDED
|
||||
|
||||
#include "CppUnit/Orthodox.h"
|
||||
|
||||
#endif // Poco_CppUnit_Orthodox_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// RepeatedTest.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_RepeatedTest_INCLUDED
|
||||
#define Poco_CppUnit_RepeatedTest_INCLUDED
|
||||
|
||||
#include "CppUnit/RepeatedTest.h"
|
||||
|
||||
#endif // Poco_CppUnit_RepeatedTest_INCLUDED
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
//
|
||||
// Test.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_Test_INCLUDED
|
||||
#define Poco_CppUnit_Test_INCLUDED
|
||||
|
||||
|
||||
#include "CppUnit/Test.h"
|
||||
|
||||
#endif // Poco_CppUnit_Test_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// TestCaller.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_TestCaller_INCLUDED
|
||||
#define Poco_CppUnit_TestCaller_INCLUDED
|
||||
|
||||
#include "CppUnit/TestCaller.h"
|
||||
|
||||
#endif // Poco_CppUnit_TestCaller_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// TestCase.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_TestCase_INCLUDED
|
||||
#define Poco_CppUnit_TestCase_INCLUDED
|
||||
|
||||
#include "CppUnit/TestCase.h"
|
||||
|
||||
#endif // Poco_CppUnit_TestCase_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// TestDecorator.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_TestDecorator_INCLUDED
|
||||
#define Poco_CppUnit_TestDecorator_INCLUDED
|
||||
|
||||
#include "CppUnit/TestDecorator.h"
|
||||
|
||||
#endif // Poco_CppUnit_TestDecorator_INCLUDED
|
||||
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// TestFailure.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_TestFailure_INCLUDED
|
||||
#define Poco_CppUnit_TestFailure_INCLUDED
|
||||
|
||||
#include "CppUnit/TestFailure.h"
|
||||
|
||||
#endif // Poco_CppUnit_TestFailure_INCLUDED
|
||||
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// TestResult.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_TestResult_INCLUDED
|
||||
#define Poco_CppUnit_TestResult_INCLUDED
|
||||
|
||||
#include "CppUnit/TestResult.h"
|
||||
|
||||
#endif // Poco_CppUnit_TestResult_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// TestRunner.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_TestRunner_INCLUDED
|
||||
#define Poco_CppUnit_TestRunner_INCLUDED
|
||||
|
||||
#include "CppUnit/TestRunner.h"
|
||||
|
||||
#endif // Poco_CppUnit_TestRunner_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// TestSetup.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_TestSetup_INCLUDED
|
||||
#define Poco_CppUnit_TestSetup_INCLUDED
|
||||
|
||||
#include "CppUnit/TestSetup.h"
|
||||
|
||||
#endif // Poco_CppUnit_TestSetup_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// TestSuite.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_TestSuite_INCLUDED
|
||||
#define Poco_CppUnit_TestSuite_INCLUDED
|
||||
|
||||
#include "CppUnit/TestSuite.h"
|
||||
|
||||
#endif // Poco_CppUnit_TestSuite_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// TextTestResult.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_TextTestResult_INCLUDED
|
||||
#define Poco_CppUnit_TextTestResult_INCLUDED
|
||||
|
||||
#include "CppUnit/TextTestResult.h"
|
||||
|
||||
#endif // Poco_CppUnit_TextTestResult_INCLUDED
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// estring.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef Poco_CppUnit_estring_INCLUDED
|
||||
#define Poco_CppUnit_estring_INCLUDED
|
||||
|
||||
#include "CppUnit/estring.h"
|
||||
|
||||
#endif // Poco_CppUnit_estring_INCLUDED
|
||||
Reference in New Issue
Block a user