Minh Nguyen / Misc

Misc.h

Committer:
khaiminhvn
Date:
2021-03-17
Revision:
2:31917884f2d4
Parent:
1:a46794267da5
Child:
3:a1a820da71f6

File content as of revision 2:31917884f2d4:

#ifndef MISC_H
#define MISC_H

//INCLUDES
#include "mbed.h"
#include "string"

class Misc{
    public:
    static string itos(int n);
    static string itos(int n, int w);
    static string itos(float n);
    static string itos(float n, int w);
};

#endif