//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / OVOPS++
//
//File: tools.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/11/20 13:59:53 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      Defines general static helper methods (e.g. convert types etc.)
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __PF_TOOLS_H__
#define __PF_TOOLS_H__

#include <typeinfo>
#include <string>
#include "pf/types.h"

class pfTools
{
    public:
        static string intToString(const pfUlong number_);

        // Tool conversion methods for DEC and HEX
        static int hexToDec(int hexnum_);
        static int decToHex(int decnum_);
};

#endif // __PF_TOOLS_H__

