42 lines
522 B
C++
42 lines
522 B
C++
//----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 2008 Intel Corporation
|
|
//
|
|
// File: Utilities.h
|
|
//
|
|
// Description: Utilities interface
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef UTILITIES_H
|
|
#define UTILITIES_H
|
|
|
|
namespace UtilsNamespace
|
|
{
|
|
namespace DataType
|
|
{
|
|
|
|
};
|
|
|
|
namespace Logger
|
|
{
|
|
|
|
};
|
|
|
|
namespace XMLUtils
|
|
{
|
|
|
|
};
|
|
|
|
namespace SyncUtils
|
|
{
|
|
|
|
};
|
|
|
|
namespace CommandLineParser
|
|
{
|
|
|
|
};
|
|
};
|
|
|
|
#endif //UTILITIES_H
|