You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
15 lines
349 B
#ifndef _ALGORITHMS_H
|
|
#define _ALGORITHMS_H
|
|
|
|
#include "Allocator.h"
|
|
#include "Stack.h"
|
|
|
|
template <class WmiElement>
|
|
LONG CompareElement ( const WmiElement &a_Arg1 , const WmiElement &a_Arg2 ) ;
|
|
|
|
template <class WmiElement>
|
|
WmiStatusCode QuickSort ( WmiElement *a_Array , ULONG a_Size ) ;
|
|
|
|
#include <Algorithms.cpp>
|
|
|
|
#endif _ALGORITHMS_H
|