11 lines
186 B
C
11 lines
186 B
C
|
#include <iostream>
|
||
|
#include <string>
|
||
|
#include <string.h>
|
||
|
#include <vector>
|
||
|
|
||
|
class COLORS
|
||
|
{
|
||
|
public:
|
||
|
int hexToDec(char num[]);
|
||
|
// std::vector toRGB(char hexcode[]);
|
||
|
};
|