MemoryHelper: update coding style

This commit is contained in:
Vesa
2014-04-26 18:10:36 +03:00
parent ff3e94bd75
commit e638bb8ae1
2 changed files with 24 additions and 27 deletions

View File

@@ -22,18 +22,18 @@
*/
#ifndef _MEMORY_HELPER_H_
#define _MEMORY_HELPER_H_
#ifndef MEMORY_HELPER_H
#define MEMORY_HELPER_H
/**
* Helper class to alocate aligned memory and free it.
*/
class MemoryHelper {
public:
static void* alignedMalloc(int);
static void alignedFree(void*);
static void* alignedMalloc( int );
static void alignedFree( void* );
private:
};