This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const applicationTypesExt = { | |
'a' : 'application/octet-stream', | |
'ai' : 'application/postscript', | |
'bin' : 'application/octet-stream', | |
'cdf' : 'application/x-cdf', | |
'csh' : 'application/x-csh', | |
'dll' : 'application/octet-stream', | |
'doc' : 'application/msword', | |
'dot' : 'application/msword', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef _RUNNING_AVERAGE_H | |
#define _RUNNING_AVERAGE_H | |
#include <vector> | |
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
class RunningAverage | |
{ |